|
Perl 6
Download Perl 6: Revision 10
^^ Building Pugs from Source
Building Pugs from source is recommended if possible, because still the implementation is still improving rapidly. To do so, you'll need at the following installed: * A Subversion client * "GHC 6.6.1"<http://www.haskell.org/ghc/download.html>, the Haskell compiler. On Debian/Ubuntu, get ghc6 from "Lenny" or "Gutsy", respectively, or build from source (There are no current backports for Sarge, Etch, Dapper, Edgy, or Feisty). On Mac OS X, use "MacPorts"<http://www.macports.org/> and 'port install ghc'. * Perl5 With that foundation, you can follow these steps to end up with a "pugs" binary: .pre # Fetch latest Pugs from Subversion repository $ svn co http://svn.pugscode.org/pugs/ $ cd pugs # review build options controlled by env variables $ $PAGER ./INSTALL # Configure Pugs $ perl Makefile.PL # Compile Pugs # use 'make soon' instead of 'make' if you want a faster compilation and are not interested in measuring performance maxima. $ make .pre See the included README file for further instructions. Since Pugs is still in flux, you may want to consider an alternative to using "make install". Create symbolic links in your local "bin" directory to key files in the pugs distribution. This allows you to run the binaries easily, while leaving everything pugs related in the pugs source tree: .pre ln -s /home/markstos/pugs/pugs /home/markstos/bin/ ln -s /home/markstos/pugs/util/prove6 /home/markstos/bin/ .pre `prove6` is like "prove" for Perl 6. ^^ Binary Builds of Pugs Binary builds are the easiest get started with, but may not be as up to date as building from sourse. * "Win32 binary builds of Pugs and Parrot"<http://jnthn.net/perl6/>. ** (Pxperl.com appears to have stopped routinely updating their Win32 builds.) * Debian GNU/Linux - pugs packages are available on your local mirror. Only released versions are uploaded to unstable. Snapshots go to experimental from time to time. ^^ Run Pugs in your Web Browser A web terminal for Pugs is available at "run.pugscode.org"<http://run.pugscode.org>. You can choose between the latest release or latest development snapshot. ^^ Accessing Pugs Remotely Another option is to use a pugs a remote machine. If you just want to try out a line or two, you can use the "evalbot" on "the #perl6 IRC channel"<Mail Lists, IRC, Archives>. The syntax is just: .pre ?eval say "hello!" .pre If you plan to contribute to Perl 6, you can see about getting a free account on Feather, the "Perl Community Development Server"<http://feather.perl6.nl>. There, a fresh version of Pugs is built every 10 minutes! ^^ Related Links * "Pugscode.org"<http://www.pugscode.org/> * "Parrot home page"<http://www.parrotcode.org/> |