mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-01-14 01:07:55 -05:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
// Generated by CoffeeScript 1.4.0
|
|
var fill;
|
|
|
|
fill = function(container, liquid) {
|
|
if (liquid == null) {
|
|
liquid = "coffee";
|
|
}
|
|
return "Filling the " + container + " with " + liquid + "...";
|
|
};
|