README.md (613B)
1 # Systems Programming Language 2 3 A small compiled language borrowing ideas from C, Go, Rust, Zig. 4 5 Very much a work in progress. 6 7 The next phase of https://github.com/swetland/compiler/ 8 9 ## Organization 10 11 - [bootstrap/...](bootstrap/) - an SPL to C transpiler, written in C (compiler0) 12 - [compiler/...](compiler/) - an SPL compiler, written in SPL (compiler1) 13 - [build/...](build/) - build scripts 14 - [test/...](test/) - automated tests (SPL source and "golden" output) 15 - [demo/...](demo/) - programs to exercise the compiler 16 - [vim/...](vim/) - SPL syntax highlighting (install in `~/.vim/pack/plugins/start/spl`) 17