6 ms·
It still has many improvements over C. Compare: void func(x) { if (a == b) { do(c); do(d); } else{ do(e); } } vs: def
by selven 17y ago
It still has many improvements over C. Compare:
void func(x) {
if (a == b) {
do(c);
do(d);
}
else{
do(e);
}
}
vs:
def func(x):
if a == b:
do(c)
do(d)
else:
do(e)
- coliveira 17y agoI write the first as void func(int x) { if (a==b) do(c),do(d); else do(e); }