1
0
Fork 0
lesson-lisp/src/parser.h
2023-05-06 22:32:06 +04:00

9 lines
153 B
C

#ifndef __ARCANA_LISP_PARSER_H__
#define __ARCANA_LISP_PARSER_H__
#include "object.h"
#include "tokens.h"
struct Object *parse(Tokens tokens);
#endif