Created
December 28, 2011 17:26
-
-
Save caius/1528785 to your computer and use it in GitHub Desktop.
This file contains 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 output name=((default=true); "caius") | |
puts "name: #{name.inspect}" | |
puts "default: #{default.inspect}" | |
end | |
output | |
# >> name: "caius" | |
# >> default: true | |
output "avdi" | |
# >> name: "avdi" | |
# >> default: nil |
Don't forget:
def foo(something = (def foo(*); 'bar'; end)) 'qux' end
puts foo(10) # qux
puts foo # qux
puts foo(10) # bar
puts foo # bar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
also