An open API service indexing awesome lists of open source software.

https://github.com/codecs1/dcz

The programming language that support both Interpreter and Compiler
https://github.com/codecs1/dcz

Last synced: 7 months ago
JSON representation

The programming language that support both Interpreter and Compiler

Awesome Lists containing this project

README

          

## 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();
```