Cecile 0.0.3

Cecile Toy Programming Language that is designed to be simple, fast
1
2
3
4
5
6
7
8
9
10
a = [1, 2]


def change(a):
    a.append(3)
    return a


change(a.copy())
print(a)