Changeset 24147
- Timestamp:
- 12/03/08 22:16:08 (5 weeks ago)
- Files:
-
- 1 modified
-
t/spec/S03-operators/repeat.t (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S03-operators/repeat.t
r24146 r24147 9 9 =end description 10 10 11 plan 2 5;11 plan 27; 12 12 13 13 #L<S03/Changes to Perl 5 operators/"x (which concatenates repetitions of a string to produce a single string"> … … 68 68 #?rakudo todo 'RT #61026' 69 69 is @a.join('|'), 'b|a|a', 'change to one item left the others unchanged'; 70 71 my @b = <x y> xx 3; 72 is @b.join('|'), 'x|y|x|y|x|y', 'basic sanity with <x y> xx 3'; 73 @b[0] = 'z'; 74 @b[3] = 'a'; 75 #?rakudo todo 'RT #61026' 76 is @b.join('|'), 'z|y|x|a|x|y', 'change to one item left the others unchanged'; 70 77 }
