Skip to content

Instantly share code, notes, and snippets.

@agentfin
Created January 27, 2012 04:48
Show Gist options
  • Save agentfin/1687039 to your computer and use it in GitHub Desktop.
Save agentfin/1687039 to your computer and use it in GitHub Desktop.
Nesting your method calls
# Repo Man
def thirsty_bitch
puts "get me another"
beer
end
def beer
puts "Red Stripe."
end
puts "Otto!"
thirsty_bitch
@agentfin
Copy link
Author

. . . we're practicing some syntax here, but that is NIFTY
Definitely will lean toward the #{__} in future.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment