2 Commits
v0.1 ... master

Author SHA1 Message Date
Tim
2b19055c86 Moved magic value to variable 2020-12-03 11:30:17 +01:00
Tim
9c9a38039c Moved code to a function 2020-12-03 11:30:17 +01:00

View File

@@ -1 +1,6 @@
print(5)
value = 3
def print_5():
print(value)
print_5()