10 lines
252 B
Text
10 lines
252 B
Text
T MyType
|
|
Int public_variable // member variable = instance variable
|
|
. Int private_variable
|
|
|
|
F () // constructor
|
|
.private_variable = 0
|
|
|
|
F someMethod() // member function = method
|
|
.private_variable = 1
|
|
.public_variable = 10
|