6 lines
96 B
Python
6 lines
96 B
Python
def hello():
|
|
try:
|
|
print "Hello, world"
|
|
except IOError, e:
|
|
print e.errno
|