package Perl6::Pugs; $Pugs::VERSION = '6.0.0'; use strict; =head1 NAME Perl6::Pugs - Perl6 User's Golfing System =head1 VERSION This document describes version 6.0.0 of Pugs, released February 7, 2005. =head1 SYNOPSIS % pugs -e "'Hello, World!'" Hello, World! =head1 DESCRIPTION Started at 2005-02-01, Pugs is an attempt at writing a Perl6 interpreter in Haskell. Currently it is in its very early stages. Although Pugs does not yet directly relate to PGE or Parrot, the hope is that it can flesh out corner cases in the Synopses during implementation, as well as contributing more test cases to the main Perl6 project. =head2 Featherweight Perl6 Featherweight Perl6 (FP6) is a simplified, side-effect-free subset of the Perl6 language, inspired by I. It is the first-step target language of Pugs. Notable features in Perl6 that are I in FP6: =over 4 =item * Assignments and mutable variables. =item * Grammar, Rules and Macros. =item * Unboxed types. =item * Run-time applications of "but" and "does". =item * I/O primitives. =item * Perl5 Compatibility Mode. =item * Non-ascii symbols: E<171>, E<187> and E<165>. =back The only ways to do I/O in FP6 are: =over 4 =item * C<@*ARGS>, C<$*PID>, C<$*PROGRAM_NAME>, etc.. =item * C<< <> >> (lazily-evaluated lines of input) =item * The toplevel evaluation result is printed under flattened list context with items stringified. =back =head2 Release Plans The major/minor version numbers of Pugs converges to 2*pi; each significant digit in the minor version represents a milestone. The third digit is incremented for each release. The current milestones are: =over 4 =item 6.0: Initial release. =item 6.2: Implement FP6, without user-defined subtypes. =item 6.28: Full FP6, with classes and traits. =item 6.283: Assignment and I/O primitives. =item 6.2831: Role composition and other runtime features. =item 6.28318: Rules and Grammars. =item 6.283185: Macros; full Perl6 bootstrapping. =back =head1 SEE ALSO The mailing list for Pugs is perl6-compiler. Subscribe by sending mail to Eperl6-compiler-subscribe@perl.orgE. It is archived at L and available via NNTP at L. You can also read the list via Google Groups at L Please submit bug reports to Ebug-perl6-pugs@rt.cpan.orgE. =head1 COPYRIGHT Copyright 2005 by Autrijus Tang Eautrijus@autrijus.orgE. This program is free software; you can redistribute it and/or modify it under the same terms as Pugs itself. =cut