Changeset 7 for lib/Perl6/Pugs.pm

Show
Ignore:
Timestamp:
02/09/05 06:00:26 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
1041
Message:

* This be 6.0.2

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lib/Perl6/Pugs.pm

    r6 r7  
    11package Perl6::Pugs; 
    2 $Pugs::VERSION = '6.0.1'; 
     2$Pugs::VERSION = '6.0.2'; 
    33 
    44use strict; 
     
    1010=head1 VERSION 
    1111 
    12 This document describes version 6.0.1 of Pugs, released February 7, 2005. 
     12This document describes version 6.0.2 of Pugs, released February 9, 2005. 
    1313 
    1414=head1 SYNOPSIS 
    1515 
    16     % pugs -e "'Hello, World!'" 
     16    % pugs -e 'sub hi { "Hello, " ~ $_ } ; hi "World!\n"' 
    1717    Hello, World! 
    1818 
     
    5656=over 4 
    5757 
    58 =item * C<@*ARGS>, C<$*PID>, C<$*PROGRAM_NAME>, etc.. 
     58=item * C<@*ARGS>, C<$*PID>, C<$*PROGRAM_NAME>, etc. 
    5959 
    60 =item * C<< <> >> (lazily-evaluated lines of input) 
     60=item * C<< <> >> (lazily-evaluated lines of input). 
    6161 
    6262=item * The toplevel evaluation result is printed under flattened list context with items stringified.