Skip to content

Instantly share code, notes, and snippets.

@tdshipley
Last active August 29, 2015 14:24
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 tdshipley/147e3aa1ceb5b933fe9b to your computer and use it in GitHub Desktop.
Save tdshipley/147e3aa1ceb5b933fe9b to your computer and use it in GitHub Desktop.
Poetry Mode Example 3
def method(regular_variable, hash_variable={})
# Internal workings of the method which expects
# one variable and some optional named ones
end
method "12", a: "14"
method "13", b: "15"
method "13", b: "15", a: "14"
method "13", b: "15", a: "14"
method "13", { b: "15", a: "14" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment