Developer time is the most valuable resource. Writing in Python may cause slower code, but it is in reality much more efficient because you will get an exponential amount of more work done!
Name:
Anonymous2012-11-29 0:21
In c, suppose:
foo = false;
Should I write:
foo = bar;
Or:
if (bar) foo = true;
Will the first statement always execute faster, or does it depend on whether bar is true or false?