This commit is contained in:
Andre Wagner
2026-04-30 16:29:26 -05:00
parent c9db95bd7e
commit 225458e6c0

View File

@@ -6,7 +6,9 @@
namespace tyche::as {
enum class TokenType { BOF, Directive, Instruction, Integer, Float, String, Enter, EOF_ };
enum class TokenType {
BOF, Directive, Instruction, Integer, Float, String, Enter, EOF_
};
struct Token {
TokenType type;