Join Nostr
2025-03-18 15:11:43 UTC

luna, friend of eggbug on Nostr: what's your favorite piece of load-bearing whitespace in C++? nested templates are ...

what's your favorite piece of load-bearing whitespace in C++? nested templates are the classic historical example, but i'm quite partial to this one:<code>int main() {<br> int a = 0xE + 1; // compiles<br> int b = 0xE+1; // doesn't<br>}<br></code>