Initial Setup Commit

This commit is contained in:
Cal W
2023-04-02 19:04:57 +10:00
parent 2a7ecbf2ef
commit 18c41cf634
4 changed files with 24 additions and 0 deletions

8
main.py Normal file
View File

@@ -0,0 +1,8 @@
# ENGG4900 Graph Generators
# Cal Wing 2023
def main():
print("Hello World!")
if __name__ == "__main__":
main()