Unilang is a high-level object-oriented compiled programming language that aims to be easy to use and memory safe.
git clone https://github.com/Paul-Passeron/Unilang.git
cd Unilang
make
sudo make install
cd ..
rm -rf Unilang
Unilang <source_file> [options]
main.ul:
@include "stdlib/io.ul"
let entry(): void => {
println("Hello, World !");
}
Unilang main.ul -o main
./main
# Output: Hello, World !