blob: f664078d00c0dca6d710ebe94abba7b469a5d162 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!./perl
print "1..8\n";
# compile time evaluation
# 'A' 65 ASCII
# 'A' 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";}
print "not " unless ord(chr(500)) == 500;
print "ok 5\n";
$x = 500;
print "not " unless ord(chr($x)) == $x;
print "ok 6\n";
print "not " unless ord("\x{1234}") == 0x1234;
print "ok 7\n";
$x = "\x{1234}";
print "not " unless ord($x) == 0x1234;
print "ok 8\n";
|