mirror of
https://github.com/usatiuk/nand2tetris.git
synced 2025-10-29 00:27:49 +01:00
16 lines
230 B
C#
16 lines
230 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace JackAnalyzer
|
|
{
|
|
enum TokenType
|
|
{
|
|
keyword,
|
|
identifier,
|
|
symbol,
|
|
integerConstant,
|
|
stringConstant
|
|
}
|
|
}
|