You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
225 B
Plaintext

# test2
# variable and function tests
# show variable recognition and proper c-function handling
print(a * 1)
print(3 + b)
print(a = 5)
print(a * 1)
print(c = 4)
print(a / c)
print(b = 2)
print(d = 8)
print(d + (e = 4))