#ifndef PARSER_H_ #define PARSER_H_ #include "data.h" Value *parse_list(Lexer *lex); Value *parse_expr(Lexer *lex); #endif