コード例 #1
0
ファイル: test.py プロジェクト: danse-inelastic/helloworld
#!/usr/bin/env python

import helloworld
helloworld.hello("World")
helloworld.hello2("World")
コード例 #2
0
ファイル: hello.py プロジェクト: danse-inelastic/helloworld
#!/usr/bin/env python

import helloworld, sys

greeter = sys.argv[1]
helloworld.hello(greeter)
helloworld.hello2(greeter)