Linked by anonymous on Tue 29th Mar 2011 16:05 UTC
Thread beginning with comment 468309
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
http://roby.house.gov/press-release/%E2%80%9Cpi%E2~...
"The “Pi” story is a hoax and is untrue. It was written by a liberal blogger in the comedy section of the Huffington Post. No such bill exists, as evidenced by a quick check of http://thomas.loc.gov/. Thank you for not falling for the joke (even though it is humorous)."





Member since:
2009-08-13
The new auto is even better than C#'s var in that it allows multiple declarations. That can be very handy depending on code-style:
auto inprecise_pi = 3.14159,
inprecise_pi2 = 2 * inprecise_pi,
inprecise_sqrt_pi = sqrt (inprecise_pi);
whereas in C# you are forced to:
var inprecise_pi = 3.14159;
var inprecise_pi2 = 2 * inprecise_pi;
var inprecise_sqrt_pi = sqrt (inprecise_pi);