Acorn is a elegant, minimalistic, high-level programming language implemented in C++ with LLVM. It borrows ideas from MATLAB, Julia, Python, Ruby and many other languages. It supports features such as multiple-dispatch, operating overloading, static typesystem with inference and concurrency.
def hello
print("Hello, world!")
end
hello()
$ mkdir build
$ cd build
$ cmake -DCMAKE_BUILD_TYPE=Debug ..
$ cd ..
$ cmake --build build --config Debug
$ ./build/src/acornc test.acorn
$ ./test