Unicode variable names: Difference between revisions

no edit summary
No edit summary
Line 444:
<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.
 
=={{header|M2000 Interpreter}}==
<lang M2000 Interpreter>
Δ=1
Δ++
Print Δ
</lang>
 
=={{header|Mathematica}}==
Anonymous user