Respond to an unknown method call: Difference between revisions

Content added Content deleted
Line 1,148: Line 1,148:


=={{header|SuperCollider}}==
=={{header|SuperCollider}}==
<lang SuperCollider>
<lang SuperCollider>Ingorabilis {
Ingorabilis {


tell {
tell {
Line 1,192: Line 1,191:
}
}
<...></lang>
<...></lang>
Catch the method call:
<lang SuperCollider>
i = Ingorabilis.new
try { i.think } { "We are not delegating to super, because I don't want it".postln };
</lang>


=={{header|Tcl}}==
=={{header|Tcl}}==