Unicode variable names: Difference between revisions

Content added Content deleted
(Updated link to documentation. Changed syntax to a somewhat more readable one (arguable point).)
(Added Arturo implementation)
Line 104: Line 104:


''Russian/Soviet example: In English Algol68's reverent case statement reads '''case''' ~ '''in''' ~ '''out''' ~ '''esac''', in Cyrillic this reads '''выб''' ~ '''в''' ~ '''либо''' ~ '''быв'''.''
''Russian/Soviet example: In English Algol68's reverent case statement reads '''case''' ~ '''in''' ~ '''out''' ~ '''esac''', in Cyrillic this reads '''выб''' ~ '''в''' ~ '''либо''' ~ '''быв'''.''

=={{header|Arturo}}==

<lang rebol>"Δ": 1
"Δ": inc var "Δ"

print ["Delta =>" var "Δ"]</lang>

{{out}}

<pre>Delta => 2</pre>


=={{header|AutoHotkey}}==
=={{header|AutoHotkey}}==