Perl Programming Examples: Email, Encryption, Zip, HTTP, XML, FTP

Chilkat Software Components

Perl While Loop Syntax

Back

Perl While Loop Syntax
$count = 0;
while ($count <= 10) 
{
	print $count . "\n";
	$count++;
}