Archived
1
0
Fork 0
This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
SLOTH/src/constants.hpp
2018-10-01 17:15:59 -04:00

14 lines
No EOL
204 B
C++

#ifndef CONSTANTS_H
#define CONSTANTS_H
#define STATEMENT 200
#define CALLFUNC 201
#define VECTOR 202
class Node;
// Share the line number between files
extern int linenum;
extern Node* result;
#endif