File::Copy under OS/2
[p5sagit/p5-mst-13.2.git] / t / op / ord.t
index 67b8e24..3712838 100755 (executable)
@@ -2,7 +2,7 @@
 
 # $RCSfile: ord.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:09 $
 
-print "1..2\n";
+print "1..3\n";
 
 # compile time evaluation
 
@@ -12,3 +12,5 @@ if (ord('A') == 65) {print "ok 1\n";} else {print "not ok 1\n";}
 
 $x = 'ABC';
 if (ord($x) == 65) {print "ok 2\n";} else {print "not ok 2\n";}
+
+if (chr 65 == A) {print "ok 3\n";} else {print "not ok 3\n";}