7 lines
93 B
Python
7 lines
93 B
Python
def foo():
|
|
'''This is a function that does things.'''
|
|
return 42
|
|
|
|
print(foo.__doc__)
|
|
|