summaryrefslogtreecommitdiff
path: root/extension/testordchr.awk
blob: 64e53d16be6f4160c028403a8870d6746c361b05 (plain)
1
2
3
4
5
6
BEGIN {
	extension("./ordchr.so", "dlload")

	print "ord(\"a\") is", ord("a")
	print "chr(65) is", chr(65)
}