Note
self~Read_Last_Page
Singer2~Duet(self)
would give the Duet method access to the same Song.
Example 17.1. Using the SUPER variable
::class Account ::method INIT expose balance use arg balance self~init:super /* Forwards to the Object INIT method */ ::method TYPE return "an account" ::method name attribute ::class Savings subclass Account ::method INIT expose interest_rate use arg balance, interest_rate self~init:super(balance) /* Forwards to the Account INIT method */ ::method type return "a savings account"
self~init:super(balance) /* Forwards to the Account INIT method */