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]
/
l03.pl
blob
46e1f36f9885e1751c88ef3a9277e8bc2417c8b4
1
#!/usr/bin/perl -w
2
$foo
=
12345679
;
3
$foo
=
$foo
*
9
;
#Эту строчку можно записать короче $foo*= 9;
4
print
"Мы изменили значение скаляра \
$foo
!!!
$foo
\n
"
;