Files
coffeescript/documentation/js/default_args.js
Jeremy Ashkenas 81047d45ee CoffeeScript 1.8.0
2014-08-26 12:24:29 -04:00

10 lines
202 B
JavaScript

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