diff --git a/path/to/hello.py b/path/to/hello.py new file mode 100644 index 0000000..b9ee491 --- /dev/null +++ b/path/to/hello.py @@ -0,0 +1,8 @@ +import sys + +def main(): + # Prints 'Hello from the AI Dev Team' + print('Hello from the AI Dev Team') + +if __name__ == '__main__': + main()