patch to support computed regular subexpressions
[p5sagit/p5-mst-13.2.git] / t / op / arith.t
1 #!./perl
2
3 print "1..4\n";
4
5 sub try ($$) {
6    print +($_[1] ? "ok" : "not ok"), " $_[0]\n";
7 }
8
9 try 1,  13 %  4 ==  1;
10 try 2, -13 %  4 ==  3;
11 try 3,  13 % -4 == -3;
12 try 4, -13 % -4 == -1;