Unicode variable names: Difference between revisions

Content added Content deleted
(Added D entry)
(Simpler D code)
Line 11: Line 11:


void main() {
void main() {
auto Δx = 1;
auto Δ = 1;
Δx++;
Δ++;
writeln(Δx);
writeln(Δ);
}</lang>
}</lang>
You can use any of the following:
You can use any of the following: