So you can just use variables but that might not be very efficient:
local SUCCESS = 1 local FAILURE = 0 local my_choice = 1 if my_choice == SUCCESS then print("Success") else print("Failure") end