10 lines
121 B
Text
10 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
|