Perl6-Say-0.12/0000755000076500007650000000000010753435742013110 5ustar jimkjimk00000000000000Perl6-Say-0.12/510/0000755000076500007650000000000010753435742013415 5ustar jimkjimk00000000000000Perl6-Say-0.12/510/01-feature.pl0000644000076500007650000000052410753432665015625 0ustar jimkjimk00000000000000#!/usr/local/bin/perl #$Id: 01-feature.pl 1207 2008-02-09 23:22:29Z jimk $ use strict; use warnings; { use feature 'say'; say "say is available here"; } print "But not here.\n"; print "\n"; use feature 'say'; say "say is available here"; { no feature 'say'; print "But not here.\n"; } say "Yet it is here."; Perl6-Say-0.12/510/02-bundle.pl0000644000076500007650000000035610753433417015443 0ustar jimkjimk00000000000000#!/usr/local/bin/perl #$Id: 02-bundle.pl 1209 2008-02-09 23:26:31Z jimk $ use strict; use warnings; use feature ':5.10.0'; say "say is available here"; { no feature 'say'; print "But not here.\n"; } say "Yet it is here."; Perl6-Say-0.12/510/03-implicit.pl0000644000076500007650000000034410753433400015772 0ustar jimkjimk00000000000000#!/usr/local/bin/perl #$Id: 03-implicit.pl 1210 2008-02-09 23:28:00Z jimk $ use strict; use warnings; use 5.010; say "say is available here"; { no feature 'say'; print "But not here.\n"; } say "Yet it is here."; Perl6-Say-0.12/Changes0000755000076500007650000000315610753435106014405 0ustar jimkjimk00000000000000#$Id: Changes 1214 2008-02-09 23:41:58Z jimk $ Revision history for Perl extension Perl6::Say. 0.01 Thu Mar 25 22:00:02 2004 - original version; created by h2xs 1.22 with options -A -P -X -f -n Perl6::Say 0.02 Sun Mar 28 13:11:42 2004 - Fixed bug in Makefile (thanks Stefan!) 0.03 Thu Mar 10 23:26:14 2005 - Changed $\ interaction in line with changes in Perl 6 design (C is now always equivalent to C) - Fixed multiple export (added import()) (thanks Schwern) 0.04 Fri Apr 8 04:03:10 2005 - Added correct handling of default call to use $_, like print (thanks Schwern) 0.05 Mon Apr 25 22:42:54 2005 0.5.1 Sun Jul 16 08:06:28 2006 - Fixed doc nit - Corrected handling of C