Ken Williams wrote:
>
> On Oct 6, 2004, at 7:41 AM, Flavio S. Glock wrote:
> >
> > use Inline Parrot;
> >
> > print "Start Perl\n";
> > _hello( 'int count' => 5, name => 'test' );
>
> Is the invocation line supposed to be 'count' instead of 'int count'?
> Or is that some special parrot calling convention?
The final version of the module should just use 'count'.
The 'int count' was a hack. I was using it because I didn't write the
parser to grab the parameter type information from the ".param" lines:
.sub _hello
.param int count
.param string name
- Flavio S. Glock