1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

CoffeeScript 0.7.0 is on the books.

This commit is contained in:
Jeremy Ashkenas 2010-06-28 01:00:53 -04:00
parent e56af4967c
commit 677c7edf3f
8 changed files with 101 additions and 17 deletions

View file

@ -1,5 +1,5 @@
(function(){
var volume;
var volume, winner;
if (ignition === true) {
launch();
}
@ -10,5 +10,8 @@
letTheWildRumpusBegin();
}
car.speed < limit ? accelerate() : null;
if (47 === pick || 92 === pick || 13 === pick) {
winner = true;
}
print("My name is " + this.name);
})();