├── .gitignore ├── .prettierrc ├── ast.ts ├── hello.ali ├── package.json ├── run.ts ├── std └── io.ts ├── tokens.ts ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .vscode -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/.prettierrc -------------------------------------------------------------------------------- /ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/ast.ts -------------------------------------------------------------------------------- /hello.ali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/hello.ali -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/package.json -------------------------------------------------------------------------------- /run.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/run.ts -------------------------------------------------------------------------------- /std/io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/std/io.ts -------------------------------------------------------------------------------- /tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/tokens.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alii/hello-compiler/HEAD/yarn.lock --------------------------------------------------------------------------------