initial creation

This commit is contained in:
2025-05-20 11:57:43 -04:00
commit c98b612926
8447 changed files with 1862526 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/env python
import sys
# other imports (standard library, standard non-library, local)
# constants (AKA global variables)
# main function
def main(args): # <1>
function1()
function2()
# other functions
def function1():
print("hello from function1()")
def function2():
print("hello from function2()")
if __name__ == '__main__':
main(sys.argv[1:]) # <2>