Name: Anonymous 2012-11-29 0:16
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!
stdbool is pointless bullshit created to appease C++ programmers. It just adds some extra typedefs for ``comfort'', the actual semantics of true and false values are the same regardless of whether stdbool is used or not. Case in point:#include <stdbool.h>
...
bool x = 2; /* valid C code */
if (x) {
/* test succeeds */
}
if (x == true) {
/* test fails */
}stdbool._Bool internally, e.g._Bool is the actual C99 type that the compiler needs to understand as only ever holding a value of 0 or 1. The compiler must know this because using a plain integer type would lead to conversion problems like >>44.