blob: 43af807b8b46039c73c21a7c23d234f65caa65a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!./perl
print "1..4\n";
sub try ($$) {
print +($_[1] ? "ok" : "not ok"), " $_[0]\n";
}
try 1, 13 % 4 == 1;
try 2, -13 % 4 == 3;
try 3, 13 % -4 == -3;
try 4, -13 % -4 == -1;
|