Files
coffeescript/documentation/coffee/default_args.js
Jeremy Ashkenas c37f284771 redoc
2015-05-27 11:57:31 -04:00

10 lines
202 B
JavaScript

// Generated by CoffeeScript 1.9.3
var fill;
fill = function(container, liquid) {
if (liquid == null) {
liquid = "coffee";
}
return "Filling the " + container + " with " + liquid + "...";
};