#!/usr/bin/env perl -w
$count = 1;
$times = 5;
while ($count <= $times) {
print "hello " x $count;
print "\n";
$count += 1;
}
#!/usr/bin/env perl -w
$count = 1;
$times = 5;
while ($count <= $times) {
print "hello " x $count;
print "\n";
$count += 1;
}
1249
5758
1124

被折叠的 条评论
为什么被折叠?