blob: 301a3d8356651eb8c79bcef9d812abca8883d82b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef INTERPRETER_H
#define INTERPRETER_H
#include "ast.h"
#include "hash_map.h"
void exec_stmt(hashmap_t context, ASTNode *node);
void context_print(hashmap_t context);
#endif
|