func printParserErrors(out io.Writer, errors []string) {
    errColor := chalk.Red.NewStyle().WithTextStyle(chalk.Bold).Style

    io.WriteString(out, errColor("PARSER ERROR!\n"))
    for _, msg := range errors {