Skip to content

Instantly share code, notes, and snippets.

@EmanuelCadems
Created May 8, 2017 04:50
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 EmanuelCadems/2c0e5aef21d4dd55bb4ceb77d092b964 to your computer and use it in GitHub Desktop.
Save EmanuelCadems/2c0e5aef21d4dd55bb4ceb77d092b964 to your computer and use it in GitHub Desktop.
def string_rev_4(word)
if word.length < 4
word.reverse
else
word
end
end
puts string_rev_4('hello')
puts string_rev_4('yo')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment