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