Unicode variable names: Difference between revisions

Content added Content deleted
(Added implementation in C#.)
No edit summary
Line 131: Line 131:
2
2
</pre>
</pre>

=={{header|Lua}}==
<lang Lua>
local unicode = {}
unicode["Für"] = "for"
print(unicode["Für"])

unicode["garçon"] = "boy"
print(unicode["garçon"])

</lang>


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