Uniform Function Call Syntax?

Ola Fosheim Grøstad via Digitalmars-d digitalmars-d at puremagic.com
Sun Mar 6 22:39:57 PST 2016


On Monday, 7 March 2016 at 00:19:07 UTC, Xinok wrote:
> Please no. If I need to open up Character Map just to write 
> code, something has gone horribly wrong.

Modern languages support Unicode in names, so it is too late:

import std.stdio;

real Ø(real radius){ return 6.28*radius; }

void main()
{
    writeln(Ø(3));
}



More information about the Digitalmars-d mailing list