changed #interpreterLoopWith:
authorClaus Gittinger <cg@exept.de>
Wed, 04 Jul 2007 18:00:58 +0200
changeset 10635 c3c4fc186068
parent 10634 326da308bb46
child 10636 ba91c2d292f3
changed #interpreterLoopWith:
ReadEvalPrintLoop.st
--- a/ReadEvalPrintLoop.st	Wed Jul 04 17:59:27 2007 +0200
+++ b/ReadEvalPrintLoop.st	Wed Jul 04 18:00:58 2007 +0200
@@ -152,21 +152,21 @@
 cmd_help:lineStream
     self errorStream
         nextPutAll:
-'Everything entered up to an empty line is called a "chunk" and evaluated as a block.
+'Everything entered up to an empty line is called a "chunk" and evaluated.
 Lines starting with "#" are commands to the read-eval-print interpreter.
 
 Valid commands are:
-    help ............... this text
-    exit ............... exit smalltalk
-    use <package>....... use a package
+    #help ............... this text
+    #exit ............... exit interpreter loop
+    #use <package>....... use (load) a package
         stx:libwidg ........ GUI package
         stx:libtool ........ IDE tool package
-    show <what> ........ show info
+    #show <what> ........ show info
         variables .......... interpreter variables
         processes .......... processes
         memory ............. memory usage
         flags .............. flags
-    set/clear <flag> ... set or clear a flag
+    #set/clear <flag> ... set or clear a flag
         trace .............. tracing execution
         timing ............. timing execution
 
@@ -364,5 +364,5 @@
 !ReadEvalPrintLoop class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.25 2007-07-04 15:57:18 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.26 2007-07-04 16:00:58 cg Exp $'
 ! !