mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: db1fbb5178892db955678dfcec684a5af7f987c6
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 |