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]
/
l04.pl
blob
45cf32a082eb5da57ef46426a52f1371f073cc59
1
#!/usr/bin/perl
2
3
$foo
=
0
;
4
5
#сначала увеличиваем значение, затем выводим на экран
6
print
++
$foo
;
7
print
"
\n
"
;
8
#выводим на экран, затем увеличиваем значение
9
print
$foo
++;
10
print
"
\n
"
;
11
#форма записи не имеет значения
12
$foo
++;
13
print
$foo
;
14
print
"
\n
"
;