pforth  0943e5e71114f286dbb2474d55aabf91df02d104
token.h
Go to the documentation of this file.
1 #pragma once
2 
3 #define IF_TOKEN "IF"
4 #define ELSE_TOKEN "ELSE"
5 #define THEN_TOKEN "THEN"
6 
7 #define DO_TOKEN "DO"
8 #define LOOP_TOKEN "LOOP"
9 #define PLOOP_TOKEN "+LOOP"
10 
11 #define BEGIN_TOKEN "BEGIN"
12 #define UNTIL_TOKEN "UNTIL"
13 #define WHILE_TOKEN "WHILE"
14 #define REPEAT_TOKEN "REPEAT"
15 
16 #define VARIABLE_TOKEN "VARIABLE"