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