Files

10 lines
123 B
Python

def foo():
"""
Docstring for the function
:return: int
"""
print(42)
return 42
res = fo<caret>o()