Skip to content

Instantly share code, notes, and snippets.

@jeffrydegrande
Created July 19, 2012 19:49
Show Gist options
  • Save jeffrydegrande/3146336 to your computer and use it in GitHub Desktop.
Save jeffrydegrande/3146336 to your computer and use it in GitHub Desktop.
fill = (what, {with, of}) ->
container = what ?= "mug"
quantity = with ?= "500 mL"
liquid = of ?= "coffee"
alert("#{quantity} of #{liquid} on my #{container} plz")
fill "cup", with: "400ml", of: "cachaça"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment