aboutsummaryrefslogtreecommitdiff
path: root/iclean.icl
diff options
context:
space:
mode:
authorCamil Staps2016-10-16 20:34:32 +0200
committerCamil Staps2016-10-16 20:34:32 +0200
commit2c2a20f522d558445400853c44a348611fd12f71 (patch)
tree55b644ac271fce574b7f76eb832afcb41753eb7b /iclean.icl
parentUse genShow from genLibTest instead of gPrint (can show -> type) (diff)
Docker
Diffstat (limited to 'iclean.icl')
-rw-r--r--iclean.icl14
1 files changed, 7 insertions, 7 deletions
diff --git a/iclean.icl b/iclean.icl
index 92c9020..4daba82 100644
--- a/iclean.icl
+++ b/iclean.icl
@@ -34,12 +34,13 @@ import ExtraString
// SETTINGS
temp_path :== "/tmp/"
temp_module :== "iclean"
-readline_history :== "/home/camil/.iclean_history"
-template :== [ "import StdEnv"
- , "import StdMaybe"
- , "import StdDynamic"
- , "import genLibTest"
- ]
+readline_history :== "/home/.iclean_history"
+template :== map ((+++) "import ")
+ [ "StdEnv"
+ , "StdMaybe"
+ , "StdDynamic"
+ , "genLibTest"
+ ]
// END SETTINGS
temp_file :== temp_path +++ temp_module +++ ".icl"
@@ -112,4 +113,3 @@ run :: !String !*World -> (!Int, !*World)
run _ _ = code {
ccall run "S:I:A"
}
-