10 lines
146 B
Perl
10 lines
146 B
Perl
#!/usr/local/bin/perl
|
|
|
|
# Set the value of x
|
|
$x=1;
|
|
|
|
while ($x <= 10)
|
|
{
|
|
print $x++ . ", ";
|
|
}
|
|
print "\n"; |