Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 1b6e43f097b5cd167a10f68f8aba38e6 > files > 48

nqp-0.0.2013.05-1.fc18.x86_64.rpm

#! nqp
# Example of a while loop

my $i := 0;
while $i < 10 {
    say("i=$i");
    $i++;
}