Changeset 7 for lib/Perl6/Pugs.pm
- Timestamp:
- 02/09/05 06:00:26 (4 years ago)
- svk:copy_cache_prev:
- 1041
- Files:
-
- 1 modified
-
lib/Perl6/Pugs.pm (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lib/Perl6/Pugs.pm
r6 r7 1 1 package Perl6::Pugs; 2 $Pugs::VERSION = '6.0. 1';2 $Pugs::VERSION = '6.0.2'; 3 3 4 4 use strict; … … 10 10 =head1 VERSION 11 11 12 This document describes version 6.0. 1 of Pugs, released February 7, 2005.12 This document describes version 6.0.2 of Pugs, released February 9, 2005. 13 13 14 14 =head1 SYNOPSIS 15 15 16 % pugs -e "'Hello, World!'"16 % pugs -e 'sub hi { "Hello, " ~ $_ } ; hi "World!\n"' 17 17 Hello, World! 18 18 … … 56 56 =over 4 57 57 58 =item * C<@*ARGS>, C<$*PID>, C<$*PROGRAM_NAME>, etc. .58 =item * C<@*ARGS>, C<$*PID>, C<$*PROGRAM_NAME>, etc. 59 59 60 =item * C<< <> >> (lazily-evaluated lines of input) 60 =item * C<< <> >> (lazily-evaluated lines of input). 61 61 62 62 =item * The toplevel evaluation result is printed under flattened list context with items stringified.
