3 lines
82 B
Smalltalk
3 lines
82 B
Smalltalk
|
|
funcs := (1 to: 10) collect: [ :i | [ i * i ] ] .
|
||
|
|
(funcs at: 3) value displayNl .
|