Skip to content

Instantly share code, notes, and snippets.

@kurko
Created September 6, 2014 22:33
Show Gist options
  • Save kurko/c6b905280882a4639e95 to your computer and use it in GitHub Desktop.
Save kurko/c6b905280882a4639e95 to your computer and use it in GitHub Desktop.
Dynamic vs static

Dynamically typed vs statically typed

# Example 1
def order(user, shipping_method, cart)
  # ...
end

Tell Don't Ask

# Example 2
unless book.digital?
  book.ship(user)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment