If statement GREL:如何在if语句中使用OR

If statement GREL:如何在if语句中使用OR,if-statement,grel,If Statement,Grel,在GREL-if语句中如何使用“OR” 我想建造这样的东西 if(contains(value, "this") OR contains(value, "that"), True, False) 这对我有用 如果(或(包含(值,“this”)、包含(值,“that”)、True、False)

在GREL-if语句中如何使用“OR”

我想建造这样的东西

if(contains(value, "this") OR contains(value, "that"), True, False) 
这对我有用

如果(或(包含(值,“this”)、包含(值,“that”)、True、False)