My omnium-gatherom of scripts and source code.
at main 76 B view raw
1def add(a, b): 2 return a + b 3 4x=5 5 6y = add(x, x) 7 8a = print(y) 9 10print(a)