16 lines
135 B
Plaintext
16 lines
135 B
Plaintext
import system
|
|
|
|
class Foo:
|
|
|
|
def __init__(bar):
|
|
self.bar = bar
|
|
|
|
def getBar():
|
|
return self.bar
|
|
|
|
foo = Foo(42)
|
|
|
|
|
|
|
|
|