Created
March 17, 2013 17:50
-
-
Save chiragmongia/5182729 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def reverse(string) | |
| arr = string.split | |
| arr.reverse! | |
| p arr.join(" ") | |
| end | |
| p "Enter the string" | |
| string = gets.chomp | |
| reverse(string) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment