On Oct 6, 2004, at 7:41 AM, Flavio S. Glock wrote:
I'd like to know if someone else has been working on this.
Not that I know of.
Is it ok to send this to CPAN someday?
Of course!
What I have so far can execute this sample code:
--------- use Inline Parrot;
print "Start Perl\n"; _hello( 'int count' => 5, name => 'test' ); print "End Perl\n";
__END__ __Parrot__
.sub _hello .param int count .param string name print "Hello world\n" print count print " " print name print "\n" ret .end
Is the invocation line supposed to be 'count' instead of 'int count'? Or is that some special parrot calling convention?
-Ken