├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── README.md ├── debug.bat ├── run.bat ├── src ├── chunk.odin ├── compiler.odin ├── debug.odin ├── main.odin ├── memory.odin ├── object.odin ├── scanner.odin ├── table.odin ├── test.lox ├── value.odin └── vm.odin └── test.lox /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | 3 | *.exe 4 | *.pdb 5 | ols.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/README.md -------------------------------------------------------------------------------- /debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/debug.bat -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/run.bat -------------------------------------------------------------------------------- /src/chunk.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/chunk.odin -------------------------------------------------------------------------------- /src/compiler.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/compiler.odin -------------------------------------------------------------------------------- /src/debug.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/debug.odin -------------------------------------------------------------------------------- /src/main.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/main.odin -------------------------------------------------------------------------------- /src/memory.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/memory.odin -------------------------------------------------------------------------------- /src/object.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/object.odin -------------------------------------------------------------------------------- /src/scanner.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/scanner.odin -------------------------------------------------------------------------------- /src/table.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/table.odin -------------------------------------------------------------------------------- /src/test.lox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/test.lox -------------------------------------------------------------------------------- /src/value.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/value.odin -------------------------------------------------------------------------------- /src/vm.odin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/src/vm.odin -------------------------------------------------------------------------------- /test.lox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OrigamiDev-Pete/odinLox/HEAD/test.lox --------------------------------------------------------------------------------