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
Brandon Rozek 8dd2e789c0 struct->classes
Environment now has destructor
2018-09-28 21:54:24 -04:00

13 lines
No EOL
185 B
C++

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