All Downloads are FREE. Search and download functionalities are using the official Maven repository.

assets.test.coffee Maven / Gradle / Ivy

There is a newer version: 0.10.0
Show newest version
# 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)

#Functions
square = (x) -> x * x
cube   = (x) -> square(x) * x




© 2015 - 2024 Weber Informatics LLC | Privacy Policy