Hello guys
IF STRINGKEY @DIGITO Contains "3"
SET VAR @POST ($"HELLO <A>")
ELSE
SET VAR @POST ($"HELLO <B>")
END
LOG @POST
i wish the result of this to be some like this
HELLO FRIEND
but the result is
HELLO<B>
Is there any solution?
Hello guys
IF STRINGKEY @DIGITO Contains "3"
SET VAR @POST ($"HELLO <A>")
ELSE
SET VAR @POST ($"HELLO <B>")
END
LOG @POST
i wish the result of this to be some like this
HELLO FRIEND
but the result is
HELLO<B>
Is there any solution?
I solve the problem using “{}” instead “<>”