jashkenas--coffeescript/documentation/js/aliases.js

17 lines
310 B
JavaScript
Raw Normal View History

2010-07-29 04:51:35 +00:00
var volume, winner;
if (ignition === true) {
launch();
}
if (band !== SpinalTap) {
volume = 10;
}
2010-08-24 02:08:33 +00:00
if (answer !== false) {
2010-07-29 04:51:35 +00:00
letTheWildRumpusBegin();
}
2010-08-11 04:40:15 +00:00
if (car.speed < limit) {
accelerate();
2010-08-24 02:08:33 +00:00
}
2010-08-11 04:40:15 +00:00
if ((47 === pick || 92 === pick || 13 === pick)) {
2010-07-29 04:51:35 +00:00
winner = true;
}
2010-08-05 03:14:34 +00:00
print(inspect("My name is " + this.name));