Unicode variable names: Difference between revisions

Content added Content deleted
No edit summary
Line 444: Line 444:
<pre>2</pre>
<pre>2</pre>
This output was produced using LuaJIT, which implements Lua 5.1. This works because although Lua doesn't 'understand' the delta character, it still resolves to a consistent set of bytes. This string is "Γêå" in ASCII but the programmer does not need to be aware of that; the unicode variable name works just like any other.
This output was produced using LuaJIT, which implements Lua 5.1. This works because although Lua doesn't 'understand' the delta character, it still resolves to a consistent set of bytes. This string is "Γêå" in ASCII but the programmer does not need to be aware of that; the unicode variable name works just like any other.

=={{header|M2000 Interpreter}}==
<lang M2000 Interpreter>
Δ=1
Δ++
Print Δ
</lang>


=={{header|Mathematica}}==
=={{header|Mathematica}}==