On Mon, 2010-01-04 at 14:33 -0800, ZuLuuuuuu wrote:
> Hello,
> 
> One of the readers of my book told that there is a problem with the example
> program below:
> 
> 
> "user_input.st"
> "A program to demonstrate how to get input from user."
> 
> | userName |
> 
> Transcript show: 'What is your name? '.
> userName := stdin nextLine.
> 
> Transcript show: ('Hello ', userName, '!'); cr.
> 
> 
> It is working fine on my system but he is getting an output of something
> like this:
> 
> 
> dnorman...@d ~/programming/smalltalk/gst
> 01:57 pm >> gst user_input.st
> 
> What is your name? No runnable processAbort trap
> 
> 
> What might be the problem?

Hi,

it seems that all the processes are suspended.

Gwen



_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk

Reply via email to