From ea41a7529715987941257a0330c1eb1ae08cc12c Mon Sep 17 00:00:00 2001 From: Paweł Dybiec Date: Wed, 8 Jan 2020 20:22:14 +0100 Subject: Initial commit Initial version of project. What is done: * Syntax of expressions,commands,programs and types * Crude typechecking * Some typechecking tests --- src/Lib.hs | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 src/Lib.hs (limited to 'src/Lib.hs') diff --git a/src/Lib.hs b/src/Lib.hs new file mode 100644 index 0000000..d36ff27 --- /dev/null +++ b/src/Lib.hs @@ -0,0 +1,6 @@ +module Lib + ( someFunc + ) where + +someFunc :: IO () +someFunc = putStrLn "someFunc" -- cgit 1.4.1