begin parser to load from file

This commit is contained in:
2025-07-12 02:02:21 +01:00
parent 5b63471b30
commit bb5e3e8ef3
9 changed files with 171 additions and 6 deletions

8
fcore/parsing/tokens.sml Normal file
View File

@@ -0,0 +1,8 @@
structure Tokens =
struct
datatype t =
L_BRACE
| R_BRACE
| INT of int
| X
end