The example in [pug.compileClient](https://ecpa.dgpa.gov.tw/NewSurvey/FillSurvey/86d1b7d4-f7c6-49f4-a108-b594b9a014d7) is wrong: ```js var pug = require('pug'); // Compile a function var fn = pug.compileClient('string of pug', options); // Render the function var html = fn(locals); // => 'function template(locals) { return "<string>of pug</string>"; }' ``` `pug.compileClient` return a string. fn is not a callable function, except we eval it.