Skip to content

Instantly share code, notes, and snippets.

@keithrbennett
Created April 26, 2016 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keithrbennett/6876886030c7d6cf80d1b6fbcfebf7ae to your computer and use it in GitHub Desktop.
Save keithrbennett/6876886030c7d6cf80d1b6fbcfebf7ae to your computer and use it in GitHub Desktop.
def even_or_odd_as_string(num)
if num.even?
'even'
else
'odd'
end
end
2.3.0 :009 > even_or_odd_as_string 3
=> "odd"
2.3.0 :010 > even_or_odd_as_string 4
=> "even"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment