Initial commit from the 2013 with minor fixes. From now and then,
[perlbook.git] / l56.pl
blob60cfed1979aa0fbee7fcc0cfd4ecf96db1575c3e
1 #!/usr/bin/perl
3 use strict;
4 use warnings;
6 our $scalar= "Глобально и надёжно!";
8 sub tell_the_truth
10 chop $scalar;
11 $scalar= $scalar . "- разные понятия!";
14 tell_the_truth();
15 print "$scalar\n";