create a boolean expression with ANDs, ORs and NOTs ?
In a Switch Activity I would like to create a big boolean expression with ANDs, ORs and NOTs.
How do I specify such an expression in detail?
It must be something like:
boolean(.....,OR,.....)
or
boolean(boolean(...),or,boolean(...))
or
if (boolean(....) OR boolean(...))
Peter