9 lines
121 B
Text
9 lines
121 B
Text
x = funcs(7)
|
|
see x + nl
|
|
|
|
func funcs n
|
|
fn = list(n)
|
|
for i = 1 to n
|
|
fn[i] =i*i
|
|
next
|
|
return fn
|