Month: November 2007

  • hello world in perl6 with parrot

    $ mkdir -p /usr/src/svn/perl/parrot && \ cd /usr/src/svn/perl/parrot/ && \ svn co https://svn.perl.org/parrot/trunk && \ cd trunk && \ perl Makefile.PL && \ make && \ cd languages/perl6/ && \ make && \ ../../parrot perl6.pbc say “hello world” hello world ^D $ perl -e ‘ open my $helloFH, q{>}, “hello.p6″; my $newline=” “; print $helloFH…