forked from rakudo/rakudo
-
Notifications
You must be signed in to change notification settings - Fork 0
Rakudo Perl -- Perl 6 on Parrot
License
joejiang/rakudo
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
=head1 Rakudo Perl 6 This is the Perl 6 compiler for Parrot, called "Rakudo Perl 6", or "Rakudo" for short. It's still fairly primitive, but it is rapidly expanding. See L<docs/STATUS> for a list of what has been implemented thus far. =head2 Building and invoking Rakudo To build the compiler, start by building Parrot, then change to the languages/perl6/ subdirectory and type "make". This will create the compiler as a file called "perl6.pbc". The ".pbc" stands for "Parrot bytecode", and represents an executable Parrot module. To run a Perl 6 program with Rakudo, issue a command like $ parrot perl6.pbc hello.pl If you want to create a binary executable of the compiler that can be invoked as "perl6" from the command line, then try "make perl6". This will create a "perl6" (or "perl6.exe") binary that can be directly used from the command line: $ ./perl6 hello.pl This binary executable feature is still somewhat experimental, and may not work on all platforms. Also, the binary has hardcoded paths to the Parrot build tree (especially the dynamic libraries and modules), so removing the build tree will cause the binary to stop working. If the Rakudo compiler is invoked without an explicit script to run -- i.e., as "parrot perl6.pbc" or just "perl6" -- it enters a small interactive mode that allows Perl 6 statements to be executed from the command line. Each line entered is treated as a separate compilation unit, however (which means that subroutines are preserved after they are defined, but variables are not). =head2 Running the test suite Entering "make test" will run the test suite that comes bundled with Rakudo on Parrot. This is a simple suite of tests, designed to make sure that the Rakudo compiler is basically working and that it's capable of running a simple test harness. Running "make spectest" will import relevant portions of the "official Perl 6 test suite" from the Pugs repository L<http://svn.pugscode.org/pugs/t/spec/> and run all of these tests that are currently known to pass. At present we do not have any plans to directly store the official test suite as part of the Rakudo/Parrot repository, but will continue to fetch it from the Pugs repository. While in the C<languages/perl6> directory, you can an individual test from the command line with: $ make t/spec/S29-str/ucfirst.t t/spec/S29-str/ucfirst.rakudo .. 1..4 ok 1 - simple ok 2 - empty string ok 3 - # SKIP unicode ok 4 - # SKIP unicode # FUDGED! ok All tests successful. Files=1, Tests=4, 1 wallclock secs ( 0.02 usr 0.00 sys + 0.57 cusr 0.06 csys = 0.65 CPU) Result: PASS =head2 Where to get help or answers to questions There are several mailing lists, IRC channels, and wikis available with help for Perl 6 and Rakudo on Parrot. Figuring out the right one to use is often the biggest battle. Here are some rough guidelines: If you have a question about Perl 6 syntax or the right way to approach a problem using Perl 6, you probably want the C<[email protected]> mailing list. This list is primarily for the people who want to I<use> Perl 6 to write programs, as opposed to those who are implementing or developing the Perl 6 language itself. Questions about the Rakudo compiler for Parrot and the Parrot compiler tools can go to C<[email protected]>. Discussion about Parrot itself generally takes place on C<[email protected]>. The Parrot and Rakudo development team tend to hang out on IRC a fair bit, either on C<irc.perl.org/#parrot> or C<irc.freenode.net/#perl6>. There are also Perl 6 and Parrot wikis, found at L<http://www.perlfoundation.org/perl6/index.cgi> L<http://www.perlfoundation.org/parrot/index.cgi> There is also a Rakudo related blog at L<http://rakudo.org/>, and a Parrot blog at L<http://parrotblog.org/>. =head2 Reporting bugs Bug reports should be sent to C<[email protected]> with the moniker [BUG] (including the brackets) at the start of the subject so that it gets appropriately tagged in the RT system (https://rt.perl.org/rt3/). Please include or attach any sample source code that exhibits the bug, and if appropriate identify the svn revision number of the code that you're working from. There's no need to cc: the perl6-compiler mailing list, as the RT system will handle this on its own. =head2 Submitting patches If you have a patch that fixes a bug or adds a new feature, please submit it to C<[email protected]> with the moniker [PATCH] (including the brackets) at the start of the subject line. We'll generally accept patches in any form if we can get them to work, but unified diff from the svn command is greatly preferred. In general this means you can execute "svn diff >foo.patch" from the languages/perl6/ directory and just attach the foo.patch file. =head2 How the compiler works See F<docs/compiler_overview.pod>. =head1 AUTHOR Patrick Michaud ([email protected]) is the primary author and maintainer for Rakudo Perl 6 on Parrot. =cut ## vim: expandtab sw=4
About
Rakudo Perl -- Perl 6 on Parrot
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- Parrot 65.6%
- Perl 34.4%