mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-03-12 00:45:14 +00:00
10 lines
124 B
Python
10 lines
124 B
Python
#-*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
|
|
def main(args):
|
|
print("Hello World")
|
|
|
|
if __name__ == "__main__":
|
|
main(sys.argv)
|