What's the Raku equivalent of the super keyword as used in JavaScript and Python?
Whenever you extend a class in JavaScript or Python, the derived class must use the super keyword in order to set attributes and/or invoke methods and constructor in the base class. For example: class Rectangle { constructor(length, width) { this.name…