1678-goal-parser-interpretation

DevGod needs to write a blog entry for this problem!
/**
 * @param {string} command
 * @return {string}
 */
var interpret = function(command) {
    return command.replaceAll("()","o").replaceAll("(al)","al");
};