is_odd
- is_odd(value)
- Returns true if a given value is odd, false otherwise.
COPY/// is_odd(value)
//
// Returns true if a given value is odd, false otherwise.
//
// value value, real
//
/// GMLscripts.com/license
{
return (argument0 & 1);
}
Contributors: Schreib, SerMSYS, Leif902
GitHub: View · Commits · Blame · Raw