diff options
Diffstat (limited to 'contrib/perl5/t/op/ord.t')
-rwxr-xr-x | contrib/perl5/t/op/ord.t | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/perl5/t/op/ord.t b/contrib/perl5/t/op/ord.t new file mode 100755 index 0000000..ba943f4 --- /dev/null +++ b/contrib/perl5/t/op/ord.t @@ -0,0 +1,18 @@ +#!./perl + +# $RCSfile: ord.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:09 $ + +print "1..3\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";} + +# run time evaluation + +$x = 'ABC'; +if (ord($x) == 65 || ord($x) == 193) {print "ok 2\n";} else {print "not ok 2\n";} + +if (chr 65 == 'A' || chr 193 == 'A') {print "ok 3\n";} else {print "not ok 3\n";} |