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