Hacker News new | ask | show | jobs
by selven 6020 days 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)

1 comments

I write the first as

void func(int x) { if (a==b) do(c),do(d); else do(e); }