4 Commits

Author SHA1 Message Date
Tim
d7c9f88f22 Added Python shebang 2020-12-03 11:30:17 +01:00
Tim
7b7658160b Added README 2020-12-03 11:30:17 +01:00
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
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1 @@
Dit repository is de basis van de workshop Git Intermediate op 24 november 2015.

9
some_code_file.py Normal file → Executable file
View File

@@ -1 +1,8 @@
print(5)
#!/usr/bin/env python
value = 3
def print_5():
print(value)
print_5()