Course of Raku / Advanced / Modules / Modules basics / Creating modules
Quiz — is export
A module defines a subroutine without the is export
trait. What can a program that uses the module do with that
subroutine?
| 0 | call it like any imported subroutine |
| 1 | nothing — it stays private to the module |
| 0 | call it, but only once |
| 0 | redefine it |