
This is the C++ source code for the Kuin programming language. By building this, you can run the Kuin compiler in various environments such as Ubuntu, macOS, and FreeBSD. This can be compiled with clang++ or g++.
If you want to use Kuin on Windows, you can download Kuin's pre-built compiler, editor and a set of examples from Download And Introduction Of Kuin.
Download

kuin_2021_08_17_src_en.zip

kuin_2021_08_17_src_en.zip
0.1Building And Using
First, install clang++ (or g++) and extract the Kuin zip file. Run "clang++ kuin.cpp -o kuin" to create the Kuin compiler.
Create a Kuin source code test.kn in any directory. The contents of test.kn can be empty.
Run "../kuin -i test.kn -o test -s ../sys/ -e cpp" to build test.kn. For the location of kuin and the location of the sys directory, specify the location where the Kuin compiler exists. test.cpp will be generated.
Run "clang++ test.cpp -o test" to build test.cpp. The executable file test will be generated.
Run "./test" to make sure that the Kuin program works correctly. If test.kn is empty, "Hello, world!" will be printed.