Create helloworld.py

This commit is contained in:
Namhyeon Go 2022-01-26 13:18:58 +09:00 committed by GitHub
parent 90182f2af2
commit 85be8e2f90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,9 @@
#-*- coding: utf-8 -*-
import sys
def main(args):
print("Hello World")
if __name__ == "__main__":
main(sys.argv)