On Sunday, 30 April 2017 at 05:53:09 UTC, Andrew Edwards wrote:
            string line;
            parse!int((line = readln)).writeln;


is there a reason you mix normal call and ufc or just some style?
you can do this and remove some ()

(line = readln).parse!int.writeln;

Reply via email to