diff options
author | Camil Staps | 2017-10-29 11:00:52 +0100 |
---|---|---|
committer | Camil Staps | 2017-10-29 11:00:52 +0100 |
commit | 74c4e8e02dc1189eac521552566678914631737f (patch) | |
tree | 5c2d3c9a808a1280847c39decfcc30b816c5a9aa /iclean.icl | |
parent | Fix paths (diff) |
Use gPrint instead of genShow for printing results
Diffstat (limited to 'iclean.icl')
-rw-r--r-- | iclean.icl | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |