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
- Host: GitHub
- URL: https://github.com/codecs1/dcz
- Owner: CodeCs1
- Created: 2025-05-24T10:29:09.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2025-05-25T02:25:36.000Z (9 months ago)
- Last Synced: 2025-06-02T07:36:43.454Z (8 months ago)
- Language: C++
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
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();
```