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

10 lines
153 B
C
Raw Normal View History

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