Help for this page

Select Code to Download


  1. or download this
        # calls .fmt on each array which then calls .fmt on the elements
        # the results of which are implicitly joined with a space
    ...
    
          # if it must be tab separated
          # put [Z+](@arr)».fmt("%7.1f").join("\t");
    
  2. or download this
      for @arr -> @inner {
          for @inner -> $_ {
    ...
          LAST put();
      }
    }