This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Nit in Configure (bleadperl@6961)
[perl5.git] / t / op / ord.t
CommitLineData
8d063cd8
LW
1#!./perl
2
bed171df 3print "1..5\n";
8d063cd8
LW
4
5# compile time evaluation
6
9d116dd7
JH
7# 65 ASCII
8# 193 EBCDIC
9if (ord('A') == 65 || ord('A') == 193) {print "ok 1\n";} else {print "not ok 1\n";}
8d063cd8 10
bed171df
GS
11print "not " unless ord(chr(500)) == 500;
12print "ok 2\n";
13
8d063cd8
LW
14# run time evaluation
15
16$x = 'ABC';
bed171df
GS
17if (ord($x) == 65 || ord($x) == 193) {print "ok 3\n";} else {print "not ok 3\n";}
18
19if (chr 65 eq 'A' || chr 193 eq 'A') {print "ok 4\n";} else {print "not ok 4\n";}
463ee0b2 20
bed171df
GS
21$x = 500;
22print "not " unless ord(chr($x)) == $x;
23print "ok 5\n";