mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
10 lines
98 B
Python
10 lines
98 B
Python
x = 42
|
|
|
|
# print('commented')
|
|
def func():
|
|
return x ** 2
|
|
|
|
|
|
# comment 1
|
|
# comment 2
|
|
print(func()) |