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