[CODER] [CODER] Create a Python hello world script #11

Open
sam wants to merge 1 commits from feature/issue-10 into main
Showing only changes of commit 50b58b0783 - Show all commits

8
path/to/hello.py Normal file
View File

@ -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()