mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-05-03 03:00:14 -04:00
15 lines
300 B
JavaScript
15 lines
300 B
JavaScript
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); |