Skip to content

Instantly share code, notes, and snippets.

@mohayonao
Last active December 25, 2015 15:49
Show Gist options
  • Save mohayonao/7000682 to your computer and use it in GitHub Desktop.
Save mohayonao/7000682 to your computer and use it in GitHub Desktop.

Literate CoffeeScript

  • list
  • list
  • list
    • sublist
    • sublist

header2

code

add = (a, b)-> a + b

header3

code

mul = (a, b)-> a * b

quote div = (a, b)-> a / b

header3

Literate CoffeeScript

  • list
  • list
  • list
    • sublist
    • sublist

header2

# code
add = (a, b)->
  a + b

header3

# code
mul = (a, b)->
  a * b

quote div = (a, b)-> a / b

header3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment