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

11 lines
193 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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>