Hi, does freeFEM support “or” statements inside “if” statements? If so, what’s the syntax? I know there’s an “and” statement, the syntax for which is && (I think).
Cheers!
Hi, does freeFEM support “or” statements inside “if” statements? If so, what’s the syntax? I know there’s an “and” statement, the syntax for which is && (I think).
Cheers!
Hi yes use the symbol pipes: ||
. For example
if(condition1 || condition2)
Ah right, of course. Thanks!