From fdf35536b66499884dd5b4e1740ac67e5cebb1a2 Mon Sep 17 00:00:00 2001 From: tzlil Date: Fri, 14 Apr 2023 23:46:53 +0300 Subject: add homework material --- package.yaml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 package.yaml (limited to 'package.yaml') diff --git a/package.yaml b/package.yaml new file mode 100644 index 0000000..deb4306 --- /dev/null +++ b/package.yaml @@ -0,0 +1,36 @@ +name: lambda +version: 0.1.0.0 +license: BSD3 +author: "John Hui, Stephen Edwards" +maintainer: "sedwards@cs.columbia.edu" +copyright: "2023 John Hui and Stephen Edwards" + +extra-source-files: +- README.md + +dependencies: +- base >= 4.7 && < 5 + +ghc-options: +- -Wall +- -Wcompat +- -Widentities +- -Wincomplete-record-updates +- -Wincomplete-uni-patterns +- -Wmissing-export-lists +- -Wmissing-home-modules +- -Wpartial-fields +- -Wredundant-constraints + +library: + source-dirs: src + dependencies: + - megaparsec + - containers + +executables: + plc: + main: Main.hs + source-dirs: plc + dependencies: + - lambda -- cgit 1.4.1