Character codes: Difference between revisions

add SmallBASIC example
(→‎{{header|Zig}}: update to use main() and stdout)
imported>J7M
(add SmallBASIC example)
Line 555:
<pre>38
A</pre>
 
==={{header|SmallBASIC}}===
<syntaxhighlight lang="qbasic">
Print "a -> "; Asc("a")
Print "98 -> "; Chr(98)
</syntaxhighlight>
 
==={{header|True BASIC}}===
Anonymous user