Help for this page
# 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");
for @arr -> @inner { for @inner -> $_ { ... LAST put(); } }