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?
-- 
View this message in context: 
http://old.nabble.com/What-might-cause-%22No-runnable-processAbort-trap%22--tp27020460p27020460.html
Sent from the Gnu - Smalltalk mailing list archive at Nabble.com.



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

Reply via email to