An experimental project for statically typed scripting language.
Rust toolchain for your computer
$ cargo install --git https://github.com/White-Green/kirl-lang
or
$ git clone https://github.com/White-Green/kirl-lang
$ cargo install kirl-lang/kirl
create below file named "hello.kirl".
import std::io;
"Hello, World!".io::println();
and run this file by the below command.
$ kirl hello.kirl