10 lines
126 B
Python
10 lines
126 B
Python
#!/usr/bin/env python
|
|
|
|
firstname = "Jonathan"
|
|
|
|
print "Hello, " + firstname
|
|
|
|
firstname = "John"
|
|
|
|
print "Goodbye, " + firstname
|