Ruud H.G. van Tol:

> b.   { say; say } (0..4);
>
> b. now produces 2 lines with 01234 (in pugs). With implied looping
> that would be 10 lines, starting with two 0-lines.

Standard:
  do {say; say} for 0..4
  for 0..4 {say; say}

Wishful:
  (0..4) »{say; say}

pugs doesn't seem to do the
  ("f","oo","bar")».chars
from S3 yet
(I assume it just ignores the hyper)

-- 
Grtz, Ruud

Reply via email to