RosettaCodeData/Task/Classes/Slate/classes.slate

13 lines
263 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
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)
].