ReadEvalPrintLoop.st
changeset 10253 48588709c555
parent 10252 c27816dc60c3
child 10254 e576d49220c2
equal deleted inserted replaced
10252:c27816dc60c3 10253:48588709c555
   115                 error nextPutLine:('Evaluation aborted: ', ex description)
   115                 error nextPutLine:('Evaluation aborted: ', ex description)
   116             ] do:[
   116             ] do:[
   117                 |value|
   117                 |value|
   118 
   118 
   119                 value := (compilerClass new requestor:self) evaluate:chunk.
   119                 value := (compilerClass new requestor:self) evaluate:chunk.
   120                 value printOn:output
   120                 value printOn:output.
       
   121                 output cr.
   121             ].
   122             ].
   122         ].
   123         ].
   123     ] loop.
   124     ] loop.
   124 
   125 
   125     "
   126     "
   130 ! !
   131 ! !
   131 
   132 
   132 !ReadEvalPrintLoop class methodsFor:'documentation'!
   133 !ReadEvalPrintLoop class methodsFor:'documentation'!
   133 
   134 
   134 version
   135 version
   135     ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.3 2006-12-07 17:00:37 cg Exp $'
   136     ^ '$Header: /cvs/stx/stx/libbasic/ReadEvalPrintLoop.st,v 1.4 2006-12-07 17:14:34 cg Exp $'
   136 ! !
   137 ! !