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

# $Header: op.ord,v 1.0 87/12/18 13:14:01 root Exp $

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";}