Richard Hainsworth wrote:
Given a function implemented in parrot, how can it be called from a
perl6 program?
To use functions from a class or module in a different language, you
will be able to use "use" to include the module, but with the language
name out the front. So:
use parrot:SomeModule;
There'll be some way to import symbols too, I imagine.
I'm sure someone with a more encycopedic knowledge of the synopses will
be able to tell you whether/where that is mentioned in those, but I
think this is fairly settled on. :-)
Jonathan