

Shine is an expressive, minimalistic, statically typed programming language implemented in C++.With influences derived from languages such as Rust, Ruby, Lua, and C.
- fast
- simple, explicit, elegant
- small learning curve (like C)
- statically typed with inference
- access to AST from code (static reflections)
- possibility of shooting in the knees
To build Shine, you need next dependencies:
C++ compiler with support C++17LLVM and LLVM-devCMake
After installing all dependencies, simple run:
$ mkdir build$ cd build$ cmake ..$ make -j4
Check out the help:
This project is atrolling Rust & C toy language.