mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +07:00
7 lines
85 B
Python
7 lines
85 B
Python
class MyClass:
|
|
def method(self):
|
|
return 42
|
|
|
|
|
|
a = MyClass()
|
|
x = a.method() |