how tow write the if condition to check the two local variables are equal or not ?
Discussion posts and replies are publicly visible
For verifying the equality of two local variables. One such method is:
a!localVariables( local!var1:10, local!var2:20, if(local!var1=local!var2,true,false))
You do not need the if() statement here. It's unnecessarily verbose. You can just write it like this:
a!localVariables( local!var1:10, local!var2:20, local!var1=local!var2 )