Exemplo n.º 1
0
#!/usr/bin/env python

import helloworld
helloworld.hello("World")
helloworld.hello2("World")
Exemplo n.º 2
0
#!/usr/bin/env python

import helloworld, sys

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