Skip to content

Instantly share code, notes, and snippets.

@patricksimpson
Last active December 23, 2015 23:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patricksimpson/6709777 to your computer and use it in GitHub Desktop.
Save patricksimpson/6709777 to your computer and use it in GitHub Desktop.
The CoffeeScript example source code.
# Assignment:
number = 42
opposite = true
# Conditions:
number = -42 if opposite
# Functions:
square = (x) -> x * x
# Arrays:
list = [1, 2, 3, 4, 5]
# Objects:
math =
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