5 lines
102 B
Text
5 lines
102 B
Text
put "1,2,3,4,5" into nums
|
|
repeat for each item n in nums
|
|
add (n * n) to m
|
|
end repeat
|
|
put m // 55
|