A lightweight scripting language designed for simplicity and ease of use.
git clone https://github.com/fszontagh/voidscript.git
cd voidscript
cmake -S . -B build
cmake --build build
# Hello World example
print("Hello,", "", "World!", "\n");
# Variables
int x = 42;
string name = "VoidScript";
// Functions
function $add(int $a, double $b, string $help) {
int $result = $a + $b;
print("The sum is: ", $result, "\n");
print("Help: ", $help, "\n");
return $result;
}
For detailed documentation, please visit the Wiki.
git checkout -b feature/amazing-feature)git commit -m 'Add some amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.