mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-14 17:38:02 -05:00
12 lines
202 B
CoffeeScript
12 lines
202 B
CoffeeScript
---
|
|
message: "I knew it!"
|
|
---
|
|
|
|
$ ->
|
|
list = [1, 2, 3, 4, 5]
|
|
square = (x) -> x * x
|
|
cube = (x) -> square(x) * x
|
|
cubes = (math.cube num for num in list)
|
|
|
|
alert "{{ page.message }}" if elvis?
|