Character codes: Difference between revisions

m
(Replace println() with print(); replace output "syntaxhighlight" tag with "pre" tag)
Line 1,247:
"abcABC"</syntaxhighlight>
=={{header|Kotlin}}==
<syntaxhighlight lang="scalakotlin">fun main(args: Array<String>) {
var c = 'a'
var i = c.toInt()code
println("$c <-> $i")
i += 2
Line 1,261:
99 <-> c
</pre>
 
=={{header|LabVIEW}}==
{{VI snippet}}<br/>
32

edits