The "is_even" FunctionSyntax#is_even(n);CopyArgumentTypeDescriptionnrealA number to check parity ofDescription#Returns true if a given number is even, and false if odd. Invalid inputs will be returned as even.Example#if (is_even(var_num)) { show_message("I'm even!");} else { show_message("I'm odd!");}Copy