mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
18 lines
350 B
JavaScript
18 lines
350 B
JavaScript
(function(){
|
|
var volume, winner;
|
|
if (ignition === true) {
|
|
launch();
|
|
}
|
|
if (band !== SpinalTap) {
|
|
volume = 10;
|
|
}
|
|
if (!(answer === false)) {
|
|
letTheWildRumpusBegin();
|
|
}
|
|
car.speed < limit ? accelerate() : null;
|
|
if (47 === pick || 92 === pick || 13 === pick) {
|
|
winner = true;
|
|
}
|
|
print("My name is " + this.name);
|
|
})();
|