├── .gitignore ├── Expanding the Language.md ├── LICENSE.md ├── README.md ├── TBASEXEC.lua ├── TBASEXTN.lua ├── TBASIC.lua ├── TBASINCL.lua ├── doc ├── TBASMAN.pdf ├── TBASMAN.tex ├── commandsstatements.tex ├── concepts.tex ├── errors.tex ├── functions.tex ├── implementation.tex ├── intro.tex ├── operators.tex ├── theinterpreter.tex └── thelanguage.tex ├── samples ├── 99BEERS.BAS ├── CONSTEST.BAS ├── GOSUB.BAS ├── NUMGUESS.BAS └── test_suite.bas └── tests └── tokenisertest.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/.gitignore -------------------------------------------------------------------------------- /Expanding the Language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/Expanding the Language.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/README.md -------------------------------------------------------------------------------- /TBASEXEC.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/TBASEXEC.lua -------------------------------------------------------------------------------- /TBASEXTN.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/TBASEXTN.lua -------------------------------------------------------------------------------- /TBASIC.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/TBASIC.lua -------------------------------------------------------------------------------- /TBASINCL.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/TBASINCL.lua -------------------------------------------------------------------------------- /doc/TBASMAN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/TBASMAN.pdf -------------------------------------------------------------------------------- /doc/TBASMAN.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/TBASMAN.tex -------------------------------------------------------------------------------- /doc/commandsstatements.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/commandsstatements.tex -------------------------------------------------------------------------------- /doc/concepts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/concepts.tex -------------------------------------------------------------------------------- /doc/errors.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/errors.tex -------------------------------------------------------------------------------- /doc/functions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/functions.tex -------------------------------------------------------------------------------- /doc/implementation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/implementation.tex -------------------------------------------------------------------------------- /doc/intro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/intro.tex -------------------------------------------------------------------------------- /doc/operators.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/operators.tex -------------------------------------------------------------------------------- /doc/theinterpreter.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/theinterpreter.tex -------------------------------------------------------------------------------- /doc/thelanguage.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/doc/thelanguage.tex -------------------------------------------------------------------------------- /samples/99BEERS.BAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/samples/99BEERS.BAS -------------------------------------------------------------------------------- /samples/CONSTEST.BAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/samples/CONSTEST.BAS -------------------------------------------------------------------------------- /samples/GOSUB.BAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/samples/GOSUB.BAS -------------------------------------------------------------------------------- /samples/NUMGUESS.BAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/samples/NUMGUESS.BAS -------------------------------------------------------------------------------- /samples/test_suite.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/samples/test_suite.bas -------------------------------------------------------------------------------- /tests/tokenisertest.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curioustorvald/terran-basic-lua/HEAD/tests/tokenisertest.lua --------------------------------------------------------------------------------