mirror of
https://github.com/python/cpython.git
synced 2025-09-01 14:38:00 +00:00
5 lines
96 B
Python
5 lines
96 B
Python
def hello():
|
|
try:
|
|
print "Hello, world"
|
|
except IOError, e:
|
|
print e.errno
|