repo.or.cz
/
perlbook.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial commit from the 2013 with minor fixes. From now and then,
[perlbook.git]
/
l56.pl
blob
60cfed1979aa0fbee7fcc0cfd4ecf96db1575c3e
1
#!/usr/bin/perl
2
3
use
strict
;
4
use
warnings
;
5
6
our
$scalar
=
"Глобально и надёжно!"
;
7
8
sub
tell_the_truth
9
{
10
chop
$scalar
;
11
$scalar
=
$scalar
.
"- разные понятия!"
;
12
}
13
14
tell_the_truth
();
15
print
"
$scalar
\n
"
;