Decalang (dl) is an interpreted programming language made in rust used to do simple tasks since this language is in heavy developement and currently in beta
| decalang is not ready to use for big projects due to its limitation of features |
Decalang is very easy to use and beginner friendly since it only has 15 keywords to memorize.
Here is a simple code in decalang.
Decalang
fun add(x,y) {
send(x + y);
}
var x = 23;
var y = 12;
add(x,y);Make sure to do every steps right
1- git clone https://github.com/thesanddog/decalang.git to download the zip file and unzip it.
2- fsutil file createnew main.dl to create the main.dl file where you are going to write your code.
3- Open as default the type of file you created with target/release/decalang.exe.
4- main.dl to execute your program
If you want to contribute to the project you must agree to these things
1- I know what I'm doing.
2- I learned the rust language and mastered everything about it.
3- I have worked before in projects similar to this.
If everything above seems familiar to you. You can contact @TheSandDog to contribute to the project