mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
165 B
Python
16 lines
165 B
Python
class Boo:
|
|
def bu(self, y):
|
|
return 1 + y
|
|
|
|
|
|
class Foo:
|
|
def fu(self):
|
|
return Boo()
|
|
|
|
x = 0
|
|
print(x)
|
|
x = Foo().fu()\
|
|
.bu(x)
|
|
print(x)
|
|
x=2
|
|
print(x) |