7 lines
99 B
Text
7 lines
99 B
Text
Dim Base 0, A(10)
|
|
For i=0 to 9 {
|
|
a(i)=lambda i -> i**2
|
|
}
|
|
For i=0 to 9 {
|
|
Print a(i)()
|
|
}
|