Add CoffeeScript converter.

This commit is contained in:
Parker Moore
2014-01-25 16:53:47 -05:00
parent ea397d0946
commit fdbfd719ca
8 changed files with 68 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
---
---
$ ->
list = [1, 2, 3, 4, 5]
square = (x) -> x * x
cube = (x) -> square(x) * x
cubes = (math.cube num for num in list)
alert "I knew it!" if elvis?