Example #1
0
from arrays import Array

a = Array(5)

print(a)

for i in range(a.__len__()):
    a[i] = i + 1

print(a)