fork download
  1. #!/usr/bin/perl6
  2. print("123345556".comb(/(.) $0*/));
  3. print("\n");
  4. print("11223311".comb(/(.) $0*/));
Success #stdin #stdout 0.19s 82844KB
stdin
Standard input is empty
stdout
1 2 33 4 555 6
11 22 33 11