Skip to content

Instantly share code, notes, and snippets.

@marothstein
Created September 30, 2012 20:21
Show Gist options
  • Save marothstein/3808339 to your computer and use it in GitHub Desktop.
Save marothstein/3808339 to your computer and use it in GitHub Desktop.
Example CoffeeScript gist to test highlighting
# Assignment:
number = 42
opposite = true
# Conditions:
number = -42 if opposite
# Functions:
square = (x) -> x * x
# Arrays:
list = [1, 2, 3, 4, 5]
# Objects:
math =
############
# The following three lines should be indented
############
root: Math.sqrt
square: square
cube: (x) -> x * square x
# Splats:
race = (winner, runners...) ->
print winner, runners
# Existence:
alert "I knew it!" if elvis?
# Array comprehensions:
cubes = (math.cube num for num in list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment