11 lines
163 B
Text
11 lines
163 B
Text
coclass 'exampleClass'
|
|
|
|
exampleMethod=: monad define
|
|
1+exampleInstanceVariable
|
|
)
|
|
|
|
create=: monad define
|
|
'this is the constructor'
|
|
)
|
|
|
|
exampleInstanceVariable=: 0
|