9 lines
153 B
C
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
|