summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/htdocs/php/do-while.php
blob: b824bfb18d760a32bf35100ec75411a2032eccf1 (plain)
1
2
3
4
5
6
7
<?php 
$i=3;
do {
	echo $i;
	$i--;
} while($i>0);
?>