Variable names confused w/ relational operators
dbroemmel opened this issue · comments
Dirk Brömmel commented
Relational operators may be confused with variable names in longer conditional statements. Take, e.g.
if ( a .gt. b .and. ne .lt. c)
which will be re-formatted to
if (a .gt. b.and .ne. lt.c)
breaking code.