diff options
author | tzlil <tzlils@protonmail.com> | 2023-04-14 23:46:53 +0300 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-04-14 23:46:53 +0300 |
commit | fdf35536b66499884dd5b4e1740ac67e5cebb1a2 (patch) | |
tree | b907edf782ebb58780d7fbfed084560626b94c74 /plc |
add homework material
Diffstat (limited to 'plc')
-rw-r--r-- | plc/Main.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plc/Main.hs b/plc/Main.hs new file mode 100644 index 0000000..9e8a7b8 --- /dev/null +++ b/plc/Main.hs @@ -0,0 +1,8 @@ +module Main (main) where + +import Parse + +main :: IO () +main = do + s <- getContents + print $ parse s |