Translator for custom programming language. Available only on Windows. The code translates into masm32.
- Write program code:
Program TestIk;
Var;
Integer VaarrA 1;
Start;
Output VaarrA;
Finish;
- Save it to the file format!!
[filename].k09
- Build project:
git clone https://github.com/losimen/Drus-Ja
cd Drus-Ja/src
cmake .
make
- Run executable
Drus-Ja
and input your file name without file extension
Program code consits of 2 parts:
- Var block part, where programmer init variables.
- Main block program, where a programmer can write the logic of the program body
Program ProgramName;
Var;
/* var block */
Start;
/* main block */
Finish;