fork download
  1. def from=330
  2. def to=334
  3. def res=(from..to).collect{ "foo/" + it}.join(" ")
  4. println(res)
Success #stdin #stdout 2.09s 140428KB
stdin
Standard input is empty
stdout
foo/330 foo/331 foo/332 foo/333 foo/334