1#[path = "statements/clear.rs"]
36#[allow(non_snake_case)]
37pub mod CLEAR;
38
39#[path = "statements/cls.rs"]
40#[allow(non_snake_case)]
41pub mod CLS;
42
43#[path = "statements/cont.rs"]
44#[allow(non_snake_case)]
45pub mod CONT;
46
47#[path = "statements/data.rs"]
48#[allow(non_snake_case)]
49pub mod DATA;
50
51#[path = "statements/def.rs"]
52#[allow(non_snake_case)]
53pub mod DEF;
54
55#[path = "statements/deftype.rs"]
56#[allow(non_snake_case)]
57pub mod DEFTYPE;
58
59#[path = "statements/delete.rs"]
60#[allow(non_snake_case)]
61pub mod DELETE;
62
63#[path = "statements/dim.rs"]
64#[allow(non_snake_case)]
65pub mod DIM;
66
67#[path = "statements/end.rs"]
68#[allow(non_snake_case)]
69pub mod END;
70
71#[path = "statements/erase.rs"]
72#[allow(non_snake_case)]
73pub mod ERASE;
74
75#[path = "statements/for.rs"]
76#[allow(non_snake_case)]
77pub mod FOR;
78
79#[path = "statements/gosub.rs"]
80#[allow(non_snake_case)]
81pub mod GOSUB;
82
83#[path = "statements/goto.rs"]
84#[allow(non_snake_case)]
85pub mod GOTO;
86
87#[path = "statements/if.rs"]
88#[allow(non_snake_case)]
89pub mod IF;
90
91#[path = "statements/input.rs"]
92#[allow(non_snake_case)]
93pub mod INPUT;
94
95#[path = "statements/let.rs"]
96#[allow(non_snake_case)]
97pub mod LET;
98
99#[path = "statements/list.rs"]
100#[allow(non_snake_case)]
101pub mod LIST;
102
103#[path = "statements/load.rs"]
104#[allow(non_snake_case)]
105pub mod LOAD;
106
107#[path = "statements/mid.rs"]
108#[allow(non_snake_case)]
109pub mod MID;
110
111#[path = "statements/new.rs"]
112#[allow(non_snake_case)]
113pub mod NEW;
114
115#[path = "statements/next.rs"]
116#[allow(non_snake_case)]
117pub mod NEXT;
118
119#[path = "statements/on.rs"]
120#[allow(non_snake_case)]
121pub mod ON;
122
123#[path = "statements/print.rs"]
124#[allow(non_snake_case)]
125pub mod PRINT;
126
127#[path = "statements/read.rs"]
128#[allow(non_snake_case)]
129pub mod READ;
130
131#[path = "statements/rem.rs"]
132#[allow(non_snake_case)]
133pub mod REM;
134
135#[path = "statements/renum.rs"]
136#[allow(non_snake_case)]
137pub mod RENUM;
138
139#[path = "statements/restore.rs"]
140#[allow(non_snake_case)]
141pub mod RESTORE;
142
143#[path = "statements/run.rs"]
144#[allow(non_snake_case)]
145pub mod RUN;
146
147#[path = "statements/save.rs"]
148#[allow(non_snake_case)]
149pub mod SAVE;
150
151#[path = "statements/stop.rs"]
152#[allow(non_snake_case)]
153pub mod STOP;
154
155#[path = "statements/swap.rs"]
156#[allow(non_snake_case)]
157pub mod SWAP;
158
159#[path = "statements/tron.rs"]
160#[allow(non_snake_case)]
161pub mod TRON;
162
163#[path = "statements/while.rs"]
164#[allow(non_snake_case)]
165pub mod WHILE;