Chi is a new systems programming language that builds on the foundations of C while adding support for modularity through modules.
- Performance - Compiles to C for high performance
- Modularity - Module system with signatures, skeletons, implementations and aliases
- Interoperability - Seamless integration with existing C code
- C compiler
- Make
git clone https://github.com/ghuter/chi
cd chi
make
This will build the chic
executable which can compile .chi files to C.
To compile a .chi file:
./chic source.chi -o output.c
For code examples, see the examples directory.
This project is licensed under the MIT.