=head1 Loops PIR has no built-in looping structures such as C, C, C or C. All loops are built by using conditionals and C. The loop below calculates 5 factorial, stored in C<$I0>. C<$I1> is the loop counter. =cut .sub main :main $I0 = 1 # product $I1 = 5 # counter REDO: # start of loop $I0 = $I0 * $I1 dec $I1 if $I1 > 0 goto REDO # end of loop print $I0 print "\n" .end # Local Variables: # mode: pir # fill-column: 100 # End: # vim: expandtab shiftwidth=4: