#!/usr/bin/env python import helloworld helloworld.hello("World") helloworld.hello2("World")
#!/usr/bin/env python import helloworld, sys greeter = sys.argv[1] helloworld.hello(greeter) helloworld.hello2(greeter)