Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 696 Bytes

File metadata and controls

30 lines (27 loc) · 696 Bytes

DCZ (DucaZcript)

The programming language that I wrote to learn more about Interpreter and Compiler.
And also I wrote this to complete my dream PL when I was young.

Installation

  • Install cmake first.

  • Choose your favourite code translator:

    Interpreter You've choose Interpreter.
    ... You don't need to do anything, just skip to next step :P
    Compiler You've choose Compiler.

    Add this option to the command line arguments:

    -DCOMPILER:True
    

Exmaple code

func main() {
    Lprint "Hello World!";
}
main();