Changeset 7606 for lib/Perl6/Pugs.pm
- Timestamp:
- 10/14/05 13:01:26 (3 years ago)
- Files:
-
- 1 modified
-
lib/Perl6/Pugs.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lib/Perl6/Pugs.pm
r7515 r7606 17 17 % pugs -e "{ 'Hello, ', @^x }.('World!').say" 18 18 Hello, World! 19 20 With Perl 5 embedding support (also note the C<--> in the C<#!> line): 21 22 #!/usr/bin/pugs -- 23 use v6; 24 use perl5:DBI; 25 my $dbh = DBI.connect('dbi:SQLite:dbname=test.db'); 26 $dbh.do("CREATE TABLE Test (Project, Pumpking)"); 19 27 20 28 =head1 DESCRIPTION
