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

getting ready for a 0.7.0. cleanups and doc revisions, not quite there yet.

This commit is contained in:
Jeremy Ashkenas 2010-06-28 00:19:58 -04:00
parent 08ab4abd43
commit 1f7af35368
52 changed files with 1367 additions and 5688 deletions

View file

@ -1,18 +1,18 @@
(function(){
if (day === "Mon") {
go_to_work();
goToWork();
} else if (day === "Tue") {
go_to_the_park();
goToThePark();
} else if (day === "Thu") {
go_ice_fishing();
goIceFishing();
} else if (day === "Fri" || day === "Sat") {
if (day === bingo_day) {
go_to_bingo();
go_dancing();
if (day === bingoDay) {
goToBingo();
goDancing();
}
} else if (day === "Sun") {
go_to_church();
goToChurch();
} else {
go_to_work();
goToWork();
}
})();