mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
11 lines
123 B
Python
11 lines
123 B
Python
def foo():
|
|
"""
|
|
Docstring for the function
|
|
:return: int
|
|
"""
|
|
print(42)
|
|
return 42
|
|
|
|
|
|
print(42)
|
|
res = 42 |