16 lines
195 B
Plaintext
16 lines
195 B
Plaintext
pkg2 = {
|
|
on-enter => [
|
|
cout put:'start!'
|
|
],
|
|
|
|
on-exit => [
|
|
cout put:'end!'
|
|
]
|
|
}.
|
|
|
|
|
|
x = a(x:5 y:2) + 5.
|
|
a + b().
|
|
a->b().
|
|
b = [ :x | cout put:'hello, {x}' ](:'John').
|