diff options
author | Camil Staps | 2016-10-16 20:34:32 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-16 20:34:32 +0200 |
commit | 2c2a20f522d558445400853c44a348611fd12f71 (patch) | |
tree | 55b644ac271fce574b7f76eb832afcb41753eb7b /iclean.icl | |
parent | Use genShow from genLibTest instead of gPrint (can show -> type) (diff) |
Docker
Diffstat (limited to 'iclean.icl')
-rw-r--r-- | iclean.icl | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -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" } - |