IF TEST = 1 { ASSIGN Example1 = "12Monkeys" ASSIGN Example2 = "Oceans11" } //isdigit -- Returns 1 (true) if the first character within the variable is a //numeric digit (0-9). Otherwise, 0 (false) is returned. ASSIGN Result1 = Example1.isdigit //This is True ASSIGN Result2 = Example2.isdigit //This is False //isletter -- Returns 1 (true) if the first character within the variable is a //letter of the alphabet (A-Z, a-z). Otherwise, 0 (false) is returned. ASSIGN Result3 = Example1.isletter //This is False ASSIGN Result4 = Example2.isletter //This is True