Help for this page

Select Code to Download


  1. or download this
    @UAS = ( [8,0], [9,0], ...);
  2. or download this
    sub PRINT {
       printf("\n\t\t%-10s %-10s %-10s\n",'UAS','LCV','DM');
       while(@UAS || @LCV || @DM) {
    ...
           printf("\t\t" . '%3s  %-5s ' x 3 . "\n", @args);
       }
    }