/Drus-Ja

Custom programming language

Primary LanguageC++

Drus-Ja

Translator for custom programming language. Available only on Windows. The code translates into masm32.

How to use ?

  1. Write program code:
Program TestIk;
Var;
   Integer VaarrA 1;
Start;
    Output VaarrA;
Finish;
  1. Save it to the file format!! [filename].k09
  2. Build project:
    • git clone https://github.com/losimen/Drus-Ja
    • cd Drus-Ja/src
    • cmake .
    • make
  3. Run executable Drus-Ja and input your file name without file extension

Syntax

Program code consits of 2 parts:

  1. Var block part, where programmer init variables.
  2. Main block program, where a programmer can write the logic of the program body
Program ProgramName;
Var;
   /* var block */
Start;
    /* main block */
Finish;