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