This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Passwd and group file groveling.
[perl5.git] / t / op / arith.t
CommitLineData
54310121 1#!./perl
2
3print "1..4\n";
4
5sub try ($$) {
6 print +($_[1] ? "ok" : "not ok"), " $_[0]\n";
7}
8
9try 1, 13 % 4 == 1;
10try 2, -13 % 4 == 3;
11try 3, 13 % -4 == -3;
12try 4, -13 % -4 == -1;