Files

11 lines
123 B
Python

def foo():
"""
Docstring for the function
:return: int
"""
print(42)
return 42
print(42)
res = 42