Skip to content

Instantly share code, notes, and snippets.

@yano3nora
Created August 20, 2020 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yano3nora/c09b8a567f89f6e80cb96a892da14bc2 to your computer and use it in GitHub Desktop.
Save yano3nora/c09b8a567f89f6e80cb96a892da14bc2 to your computer and use it in GitHub Desktop.
[ruby: Keyword Args] #ruby
# https://qiita.com/jnchito/items/74e0930c54df90f9704c
def buy_burger(menu, drink: true, potato: true)
if drink
# ...
end
if potato
# ... :potato じゃないので注意ね
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment