mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: d7de37f5a7b3b62cc6015e2ff3dbdad5cafe3641
15 lines
235 B
Python
15 lines
235 B
Python
def foo():
|
|
# comment on the first line
|
|
print(42) # inline comment
|
|
# comment 1
|
|
print(42)
|
|
# comment 2
|
|
return 42
|
|
|
|
|
|
# comment on the first line
|
|
print(42) # inline comment
|
|
# comment 1
|
|
print(42)
|
|
# comment 2
|
|
res = 42 |