Skip to content

Instantly share code, notes, and snippets.

@kkxlkkxllb
Created November 16, 2012 03:52
Show Gist options
  • Select an option

  • Save kkxlkkxllb/4083883 to your computer and use it in GitHub Desktop.

Select an option

Save kkxlkkxllb/4083883 to your computer and use it in GitHub Desktop.
main = exports ? this
main.searchLocations = (brand, cities...) ->
a = "looking for #{brand} in #{cities.join(',')}"
console.log(a)
class main.Coffee
constructor: (@name, @strength=1) ->
$("i.icon-leaf").click =>
console.log(@name)
brew: -> alert "brewing #{@name}"
pour: (amount=@strength) ->
if amount is 1
"Poured a single cup"
else
"Poured #{amount} cups"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment