>>1150By modern, I mean with lots of compile-time checking… rigid type checking with "const" and all that.
In theory, type checking prevents bugs early. I find it an annoying pain in the ass.
There is no cruft in HolyC.
Integers are U0,I0,I8,U8,I16,U16,I32,U32,I64,U64.
You don't need to do big constants with a "l".
> long long i=12345678901234l;PrintF() does not need the "%ld", just "%d".