mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-04-11 03:00:13 -04:00
13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
(function(){
|
|
var date, mood, options;
|
|
if (singing) {
|
|
mood = greatlyImproved;
|
|
}
|
|
if (happy && knowsIt) {
|
|
clapsHands();
|
|
chaChaCha();
|
|
}
|
|
date = friday ? sue : jill;
|
|
options = options || defaultOptions;
|
|
})();
|