2014-03-30 15:26 GMT+01:00 Roelof Wobben <r.wobben@home.nl>:
testShout
� self. Nothing more expected ->assert: ( 'Do not panic' shout = "DO NO PANIC")

There are some things wrong with the second line:
( 'Do not panic' shout = )


To write the return operator, ^, I can use one of these two combinations in my linux box (which has a slightly weird US international keyboard layout):

As an additional note, you don�t actually need the parentheses there, because the order of evaluation is:
So you can write:

testShout
^ self assert: 'do not panic' shout = 'DO NOT PANIC'


Hope this helps in getting a better grasp of Smalltalk syntax. I found it really easy and fun to learn :)

Cheers,
Sergi