Character codes

From Rosetta Code
Revision as of 12:37, 19 February 2021 by Drkameleon (talk | contribs) (Replaced content with "=={{header|Arturo}}== <lang rebol>print to :integer first "a" print to :integer `a` print to :char 97</lang> {{out}} <pre>97 97 a</pre>")

Arturo

<lang rebol>print to :integer first "a" print to :integer `a` print to :char 97</lang>

Output:
97
97
a