Hello world. In Javascript, Im used to write long and complex conditions on 
several lines, with many parentheses, just like this:
    
    
    
    if (
        (a.blablabla == b.blablabla   or   a.blobloblo == b.blobloblo)
        ||
        (c.blablabla == d.blablabla   or   c.blobloblo == d.blobloblo)
    ) { // whatever }
    
    
    
    Run

That helps me to visualize clearly the logic of my code.

But when I try to do something similar in Nim, the whitespace sensitiveness of 
the language make it impossible. Please what fix do you suggest for this issue ?

Reply via email to