mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: ef532069cd2d8bb06b35fb7d6ef7be2563b9b76d
9 lines
139 B
Python
9 lines
139 B
Python
class MyClass:
|
|
def __init__(self, my_val):
|
|
self.my_val = my_val
|
|
|
|
|
|
my_class = MyClass(1)
|
|
print(my_class.my_val)
|
|
print(2)
|
|
res = 2 |