Unicode variable names: Difference between revisions

Forth
(Forth)
Line 65:
Readln;
end.</lang>
 
=={{header|Forth}}==
Historically, Forth has worked only in ASCII (going so far as to reserve the eighth bit for symbol smudging), but some more modern implementations have extended character set support such as UTF-8.
 
{{works with|GNU Forth}} 0.7.0
 
<lang forth>variable ∆
5 ∆ !
∆ @ .</lang>
 
=={{header|Go}}==
Anonymous user