I try to check if a userFunc is NOT true.
It works with ELSE:
[userFunc = user_myfunc]
#function returns true
[ELSE]
#function returns false
[end]
But what I realy want is: (that does not work!)
[userFunc != user_myfunc]
#function returns false
[end]
Is it possible to do something like that?
The reason I want to do it is: I want to check if myfunc is false and myfunc2 is true. Something like this:
[userFunc != user_myfunc] && [userFunc = user_myfunc2]
#user_myfunc returns false & user_myfunc2 returns true
[end]