Files

10 lines
155 B
Python

def foo():
# comment on the first line
print(42) # inline comment
# comment 1
print(42)
# comment 2
return 42
res = fo<caret>o()