Slide 14
Slide 14 text
ί ʔ υ ྫ ( Φ ϒ δΣ Ϋ τ ࢦ )
Person = Class:new:extends Object;
Person!new $ \this name ->
Class.proto.new this name;
Person!ctor $ \this name ->
const this $ this!name name;
Person.proto!printName $ \this ->
print this.name;
!
alice = Person:new "Alice";
alice:printName; -- Alice