Skip to content

Instantly share code, notes, and snippets.

@workmad3
Created July 23, 2010 19:19
Show Gist options
  • Select an option

  • Save workmad3/487904 to your computer and use it in GitHub Desktop.

Select an option

Save workmad3/487904 to your computer and use it in GitHub Desktop.
class String
def reverse_with_print
rev = reverse_without_print
print rev
return rev
end
alias :reverse_without_print :reverse
alias :reverse_with_print :reverse
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment