summaryrefslogtreecommitdiff
path: root/DSL/StdLib.hs
diff options
context:
space:
mode:
Diffstat (limited to 'DSL/StdLib.hs')
-rw-r--r--DSL/StdLib.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/DSL/StdLib.hs b/DSL/StdLib.hs
index 09c5338..748825e 100644
--- a/DSL/StdLib.hs
+++ b/DSL/StdLib.hs
@@ -21,6 +21,7 @@ sources = [ div'
, lteq
, gteq
, neq
+ , putLn
]
div' :: String
@@ -38,3 +39,6 @@ gteq = "PROC >= OVER OVER == ROT > || END"
neq :: String
neq = "PROC != == ! END"
+putLn :: String
+putLn = "PROC PUTLN PUT \"\n\" PUT END"
+