aboutsummaryrefslogtreecommitdiff
path: root/iclean.icl
diff options
context:
space:
mode:
authorCamil Staps2017-10-29 11:00:52 +0100
committerCamil Staps2017-10-29 11:00:52 +0100
commit74c4e8e02dc1189eac521552566678914631737f (patch)
tree5c2d3c9a808a1280847c39decfcc30b816c5a9aa /iclean.icl
parentFix paths (diff)
Use gPrint instead of genShow for printing results
Diffstat (limited to 'iclean.icl')
-rw-r--r--iclean.icl4
1 files changed, 2 insertions, 2 deletions
diff --git a/iclean.icl b/iclean.icl
index 520e91d..31cd2e1 100644
--- a/iclean.icl
+++ b/iclean.icl
@@ -38,7 +38,7 @@ import ExtraString
temp_path :== "/tmp/"
temp_module :== "iclean"
readline_history :== "/home/.iclean_history"
-template :== map ((+++) "import ") ["StdEnv", "StdDynamic", "Gast.GenLibTest"]
+template :== map ((+++) "import ") ["StdEnv", "StdDynamic", "GenPrint"]
template_file :== "/home/.iclean_template"
// END SETTINGS
@@ -179,7 +179,7 @@ where
(False, False) = "()"
where
type = "toString (typeCodeOfDynamic (dynamic start))"
- rslt = "foldl (+++) \"\" (genShow{|*|} \"\" True start [])"
+ rslt = "printToString start"
// C functions
compile :: !String !String !*World -> *(!Int,!*World)