Add auxiliary module

This commit is contained in:
Martin Fredin 2023-02-09 20:24:06 +01:00
parent 7c313b3faa
commit 07bec3e7ef
2 changed files with 6 additions and 0 deletions

5
Auxiliary.hs Normal file
View file

@ -0,0 +1,5 @@
module Auxiliary (module Auxiliary) where
snoc :: a -> [a] -> [a]
snoc x xs = xs ++ [x]

View file

@ -31,6 +31,7 @@ executable language
Grammar.Print
Grammar.Skel
LambdaLifter
Auxiliary
-- Interpreter
hs-source-dirs: src