mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
GitOrigin-RevId: b2bd04bcfc09898db6accd94210fb8c2097e7c92
7 lines
70 B
Python
7 lines
70 B
Python
def bar(x):
|
|
return x
|
|
|
|
|
|
def foo(x):
|
|
y = bar(x)
|
|
return x + y |