4 lines
87 B
Text
4 lines
87 B
Text
|
|
V array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
|
||
|
|
V arrsq = array.map(i -> i * i)
|
||
|
|
print(arrsq)
|