3 lines
91 B
Smalltalk
3 lines
91 B
Smalltalk
first := [ :f | f value ].
|
|
second := [ 'second' ].
|
|
Transcript show: (first value: second).
|