Why not extend do to allow unicode in ID's?

sarn sarn at theartofmachinery.com
Sun Jun 30 03:12:55 UTC 2019


D already allows non-latin characters in identifiers, just not 
arbitrary symbols:

import std.stdio;

void main()
{
	double φ = 1.61803398874989484820;
	writeln(φ);
}



More information about the Digitalmars-d mailing list