This website requires JavaScript.
Explore
Help
Sign In
mirror
/
RosettaCodeData
mirror of
https://github.com/acmeism/RosettaCodeData.git
Watch
1
Star
0
Fork
You've already forked RosettaCodeData
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
2023
RosettaCodeData
/
Task
/
Even-or-odd
/
LiveCode
/
even-or-odd.livecode
8 lines
108 B
Plaintext
Raw
Permalink
Blame
History
function odd n
return (n bitand 1) = 1
end odd
function notEven n
return (n mod 2) = 1
end notEven
Reference in New Issue
View Git Blame
Copy Permalink