15

I have two Raku files:

hello.p6:

sub hello
{
    say 'hello';
}

and main.p6:

require 'hello.p6';

hello();

But don't work. How to can include the first file in the main script?

2
  • can you clarify why it doesn't work? What error are you getting? also, why not take a look at using packages and the Exporter module?
    – Blaskovicz
    Nov 7, 2012 at 4:04
  • @Blaskovicz - perl6 doesn't use Exporter.
    – Coke
    Nov 7, 2012 at 20:59

2 Answers 2

15

Just for the record, the proper solution is to use a module:

File Hello.pm6

 module Hello;
 sub hello() is export {
     say 'hello';
 }

File hello.p6:

 use v6;
 use lib '.'; # to search for Hello.pm6 in the current dir
 use Hello;
 hello;
0
5

Using explicit file syntax and explicit export list seems to work for me in Rakudo:

main.p6:

require Hello:file('Hello.p6') <hello>;

hello();

hello.p6:

sub hello {
    say 'hello';
}

Source: http://perlcabal.org/syn/S11.html#Runtime_Importation

1
  • 1
    Hi @mvp, the raku doc on ``require``` states If MyModule doesn't export &something then require will fail. (docs.raku.org/syntax/require). I suggest we should check with one of the core team whether this code should be sub hello is export { there's either a bug in the doc ... or we should not rely on this even if it "seems to work" in the current version.
    – librasteve
    Jul 13, 2020 at 21:33

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.