Cursus Raku / Obiecta, introitus et exitus, et exceptiones / Classes et obiecta / Partes / Partem obiecto addere
Quiz — Partes
Quid haec programma imprimit?
role Flyer {
method fly { 'up we go' }
}
class Bird does Flyer {
}
say Bird.new.fly;| 0 | Flyer |
| 1 | up we go |
| 0 | True |
| 0 | errorem |