##- # Author: Brian Tiffin # Dedicated to the public domain # # Date: October 2016 # Modified: 2016-10-12/02:19-0400 ##+ # # ord.icn, ordinal value of a one character string # procedure main() write("ord(A) is ", ord("A")) write("ord(\\n) is ", ord("\n")) end