Unicode variable names: Difference between revisions

no edit summary
No edit summary
Line 960:
=={{header|Vala}}==
Vala has limited support for Unicode in variable names. This limitation comes from its source-to-source compilation to C.
 
=={{header|Visual Basic}}==
{{works with|Visual Basic|4}}
{{works with|Visual Basic|5}}
{{works with|Visual Basic|6}}
<lang vb>Sub Main()
Dim Δ As Integer
Δ=1
Δ=Δ+1
Debug.Print Δ
End Sub</lang>
{{out}}
<pre>2</pre>
 
=={{header|Wren}}==
43

edits