Initial commit from the 2013 with minor fixes. From now and then,
[perlbook.git] / l43.pl
blob09487d91c565b19731670d54285fe6299daa8ecb
1 #!/usr/bin/perl -w
2 use strict;
3 use warnings;
4 my $text= ’Variable names in Perl can have several formats...;
6 $text =~ /(.*\b)/g;
8 print "$1\n";