TODO list for Perl extension Inline::Parrot.

- add tests for the preprocessor: '.include' and '.macro' statements
- does Parrot know about 'wantarray' ?

- Test mixing I::Parrot with Inline::C
  XS version of I::Parrot ?

- use other pipes instead of STDIN/STDOUT/STDERR
- set up an exception handler to get the error messages into STDOUT
- Test what happens if STDIN is read by Parrot
- "Division by zero" error is not showing up

- The parrot subroutines should be created under the same namespace as 
  the current Perl module
- Test Parrot global variables
- Test for namespace problems
- Test for Parrot calling subroutines in different code snippets.

- test for different encodings
- test prototyped/non-prototyped parameters/return values
- allow "undef" parameters:  
  - returning "null" is ok; add tests for "PerlUndef"
  - accept "null" as input.
- it doesn't pass data structures back and forth.
  you can't pass a data structure by reference - this is not 
  likely to be fixable, because the perl and the parrot processes
  don't share memory. But this can be emulated (slow).
- parse the signature for the return values
  returned values are currently unordered
- use "freeze/thaw", Data::Dumper, or Storable to pass structures

- Test what happens with Perl when Parrot sleep's, and vice-versa
- Perl may give Parrot a timeout, if Parrot make a sleep.
- Test with Perl threads; Parrot threads
