- Timestamp:
- 10/09/08 03:08:04 (6 weeks ago)
- Files:
-
- 1 modified
-
t/spec/S03-operators/assign.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
t/spec/S03-operators/assign.t
r22547 r22549 962 962 { 963 963 my @a = 1, 2; 964 is (@a ,= 3, 4).join('|'), '1|2|3|4', ',= on lists works the same as push (return value)' 965 is @a.join('|'), '1|2|3|4', ',= on lists works the same as push (effect on array)' 966 967 } 964 is (@a ,= 3, 4).join('|'), '1|2|3|4', ',= on lists works the same as push (return value)'; 965 is @a.join('|'), '1|2|3|4', ',= on lists works the same as push (effect on array)'; 966 967 }
