From f56e05005c751822074f0a22aa9a98d2eb189924 Mon Sep 17 00:00:00 2001 From: markm Date: Thu, 16 May 2002 10:09:28 +0000 Subject: Perl is no longer in base. Long live the port! --- contrib/perl5/t/op/ord.t | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 contrib/perl5/t/op/ord.t (limited to 'contrib/perl5/t/op/ord.t') diff --git a/contrib/perl5/t/op/ord.t b/contrib/perl5/t/op/ord.t deleted file mode 100755 index 22ff3af..0000000 --- a/contrib/perl5/t/op/ord.t +++ /dev/null @@ -1,23 +0,0 @@ -#!./perl - -print "1..5\n"; - -# compile time evaluation - -# 65 ASCII -# 193 EBCDIC -if (ord('A') == 65 || ord('A') == 193) {print "ok 1\n";} else {print "not ok 1\n";} - -print "not " unless ord(chr(500)) == 500; -print "ok 2\n"; - -# run time evaluation - -$x = 'ABC'; -if (ord($x) == 65 || ord($x) == 193) {print "ok 3\n";} else {print "not ok 3\n";} - -if (chr 65 eq 'A' || chr 193 eq 'A') {print "ok 4\n";} else {print "not ok 4\n";} - -$x = 500; -print "not " unless ord(chr($x)) == $x; -print "ok 5\n"; -- cgit v1.1