RosettaCodeData/Task/Interactive-programming/Smalltalk/interactive-programming-1.st

11 lines
193 B
Smalltalk
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
$ gst
GNU Smalltalk ready
st> |concat|
st> concat := [ :a :b :c | (a,c,c,b) displayNl ].
a BlockClosure
st> concat value: 'Rosetta' value: 'Code' value: ':'.
Rosetta::Code
'Rosetta::Code'
st>