ReadEvalPrintLoop.st
changeset 10262 b8ae1cdd9a80
parent 10261 b429f96cf069
child 10263 85f010a3c230
--- a/ReadEvalPrintLoop.st	Thu Dec 07 19:22:41 2006 +0100
+++ b/ReadEvalPrintLoop.st	Thu Dec 07 19:28:27 2006 +0100
@@ -279,7 +279,7 @@
             ] do:[
                 |value|
 
-                value := (compilerClass new requestor:self) evaluate:chunk.
+                value := (compilerClass new requestor:self) evaluate:chunk compile:true.
                 value printOn:output.
                 output cr.
             ].
@@ -291,11 +291,11 @@
     "
 
     "Created: / 07-12-2006 / 17:27:21 / cg"
-    "Modified: / 07-12-2006 / 19:20:06 / cg"
+    "Modified: / 07-12-2006 / 19:29:01 / cg"
 ! !
 
 !ReadEvalPrintLoop class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.12 2006-12-07 18:22:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.13 2006-12-07 18:28:27 cg Exp $'
 ! !