//whitespaces added for clarification
module.exports = (function(){
    dust.register("intro",body_0);

    function body_0(chk,ctx){
        return chk.write("Hello ").reference(ctx._get(false, ["name"]),ctx,"h").write("!");
    }

    return body_0;
})();