RosettaCodeData/Task/Classes/Slate/classes.slate
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

12 lines
263 B
Text

prototypes define: #MyPrototype &parents: {Cloneable} &slots: #(instanceVar).
MyPrototype traits addSlot: #classVar.
x@(MyPrototype traits) new
[
x clone `>> [instanceVar: 0. ]
].
x@(MyPrototype traits) someMethod
[
x instanceVar = 1 /\ (x classVar = 3)
].