Skip to content

Instantly share code, notes, and snippets.

@trafnar
Created April 23, 2009 20:05
Show Gist options
  • Save trafnar/100732 to your computer and use it in GitHub Desktop.
Save trafnar/100732 to your computer and use it in GitHub Desktop.
def baz(string)
baz = []
string.split(" ").size.times do {}
baz << "baz"
end
baz.join(" ")
end
p baz("hello world, how are you")
# => "baz baz baz baz baz"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment