RosettaCodeData/Task/Classes/Slate/classes.slate

13 lines
263 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04: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)
].