1
0
Fork 0
lesson-lisp/src/parser.h

10 lines
153 B
C
Raw Normal View History

2023-05-06 18:31:07 +00:00
#ifndef __ARCANA_LISP_PARSER_H__
#define __ARCANA_LISP_PARSER_H__
2023-05-04 10:20:48 +00:00
#include "object.h"
2023-05-05 08:16:50 +00:00
#include "tokens.h"
2023-05-04 10:20:48 +00:00
2023-05-05 08:16:50 +00:00
struct Object *parse(Tokens tokens);
2023-05-04 10:20:48 +00:00
#endif