Guest User

Untitled

a guest
Sep 19th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. I.willBuyMilk (err, milk) ->
  2. if err
  3. console.log "I was unable to buy milk. I thought milk was ubiquitous?"
  4. else
  5. I.willBuyIceCream (err, iceCream) ->
  6. if err
  7. console.log "Sadly, I was unable to buy ice cream"
  8. else
  9. I.willBuyChocolateSyrup (err, syrup) ->
  10. if err
  11. console.log "Argh! So close, yet I will still not have a milkshake"
  12. else
  13. console.log "Victory is mine!"
Add Comment
Please, Sign In to add comment