Numbers To Words

Ruby

Create a method called nums_to_words that takes in an integer and translates the number to a word. For example, 101 would be translated to "one hundred one".

def nums_to_words(int) end
< >