Changeset 22496
- Timestamp:
- 10/03/08 10:02:56 (2 months ago)
- Files:
-
- 1 modified
-
t/spec/S03-operators/assign.t (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S03-operators/assign.t
r22220 r22496 7 7 # L<S03/Changes to Perl 5 operators/list assignment operator now parses on the right> 8 8 9 plan 30 4;9 plan 306; 10 10 11 11 … … 1031 1031 } 1032 1032 1033 #?rakudo skip ',=' 1034 #?DOES 2 1035 { 1036 my @a = 1, 2; 1037 is (@a ,= 3, 4).join('|'), '1|2|3|4', ',= on lists works the same as push (return value)' 1038 is @a.join('|'), '1|2|3|4', ',= on lists works the same as push (effect on array)' 1039 1040 }
