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]
/
l13.pl
blob
36efca85871d518ff48a30540935e78ad26bc27a
1
#!/usr/bin/perl -w
2
3
@porn_stars
= (
"Саша Грей"
,
"Анджел Дарк"
,
"Лили Лав"
);
4
5
$i
=
0
;
6
while
(
$i
<=
$#porn_stars
)
7
{
8
print
"
$porn_stars
[
$i
]
\n
"
;
9
$i
++;
10
}