freebsd-dev/contrib/perl5/t/op/ord.t

24 lines
489 B
Perl
Raw Normal View History

#!./perl
2000-06-25 11:04:01 +00:00
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";}
2000-06-25 11:04:01 +00:00
print "not " unless ord(chr(500)) == 500;
print "ok 2\n";
# run time evaluation
$x = 'ABC';
2000-06-25 11:04:01 +00:00
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";}
2000-06-25 11:04:01 +00:00
$x = 500;
print "not " unless ord(chr($x)) == $x;
print "ok 5\n";