7 lines
77 B
Text
7 lines
77 B
Text
var f = (
|
|
10.of {|i| func(j){i * j} }
|
|
)
|
|
|
|
9.times { |j|
|
|
say f[j](j)
|
|
}
|