mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
(cherry picked from commit 0c42984de25e97e748e719dccfe3657fc4eb79f1) IJ-CR-15473 GitOrigin-RevId: 93090f9d81d14009120682796c11862dbe9e3e98
7 lines
119 B
Python
7 lines
119 B
Python
class Foo:
|
|
def __init__(self):
|
|
self.fst = 1
|
|
self.snd = "hello"
|
|
|
|
foo = Foo()
|
|
print(foo.fst, foo.snd) |