Created
July 13, 2017 15:50
-
-
Save darkhelmet/29947dc566c6e667fb5e466d28400c28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.things { | |
td { | |
color: #fff; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment