summaryrefslogtreecommitdiff
path: root/t/op/ord.t
blob: 67b8e246862dfae501446024a78bf4ed853e28e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!./perl

# $RCSfile: ord.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:09 $

print "1..2\n";

# compile time evaluation

if (ord('A') == 65) {print "ok 1\n";} else {print "not ok 1\n";}

# run time evaluation

$x = 'ABC';
if (ord($x) == 65) {print "ok 2\n";} else {print "not ok 2\n";}