Revision 22549

Date:
2008/10/09 01:08:04
Author:
lwall
Revision Log:
[assign.t] missing semicolons
Files:

Legend:

 
Added
 
Removed
 
Modified
  • t/spec/S03-operators/assign.t

     
    961 961 #?rakudo skip ',='
    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)'
    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 966
    967 967 }