Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 570 Bytes

README_EN.md

File metadata and controls

29 lines (24 loc) · 570 Bytes

日本語版はこちら

kirl-lang

An experimental project for statically typed scripting language.

required for running

Rust toolchain for your computer

install

$ 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

running

create below file named "hello.kirl".

import std::io;

"Hello, World!".io::println();

and run this file by the below command.

$ kirl hello.kirl