I have been looking in Rakudo source for the implementation of require
, first out of curiosity and second because I wanted to know if it was returning something.
I looked up sub require
and it returned this hit, which actually seems to be the source for require, but it's called sub REQUIRE_IMPORT
. It returns Nil
and is declared as such, which pretty much answers my original question. But now my question is: Where's the mapping from that sub to require
? Is it really the implementation for that function? Are there some other functions that are declared that way?