var add_comment = function()

in index.js [23:27]


var add_comment = function(comment) {
    var comments = get_comments();
    comments.push({"date": new Date(), "text": comment});
    fs.writeFileSync('./comments.json', JSON.stringify(comments));
};