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]
/
l05.pl
blob
8dabe3d585f2636ca767252dc686a89f25f60725
1
$x
=
10
;
# число
2
$y
=
$x
+
1
;
# используем $x как число...
3
$z
=
$x
.
'string'
;
# ... а теперь — как строку
4
$ref
=
\
$x
;
# $ref является указателем на $x
5
$
$ref
=
10
;
# $x содержит значение 10