Add auxiliary module
This commit is contained in:
parent
7c313b3faa
commit
07bec3e7ef
2 changed files with 6 additions and 0 deletions
5
Auxiliary.hs
Normal file
5
Auxiliary.hs
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
|
||||
module Auxiliary (module Auxiliary) where
|
||||
|
||||
snoc :: a -> [a] -> [a]
|
||||
snoc x xs = xs ++ [x]
|
||||
|
|
@ -31,6 +31,7 @@ executable language
|
|||
Grammar.Print
|
||||
Grammar.Skel
|
||||
LambdaLifter
|
||||
Auxiliary
|
||||
-- Interpreter
|
||||
|
||||
hs-source-dirs: src
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue