kirl-lang
kirl-lang copied to clipboard
An experimental project for statically typed scripting language.
English version is here
kirl-lang
静的型付けされたスクリプト言語の実験的プロジェクト
実行環境
Rustツールチェイン をインストールしてください
インストール方法
$ cargo install --git https://github.com/White-Green/kirl-lang
または
$ git clone https://github.com/White-Green/kirl-lang
$ cargo install kirl-lang/kirl
実行
以下の内容のファイルを"hello.kirl"という名前で作成します
import std::io;
"Hello, World!".io::println();
その後、以下のコマンドで実行します
$ kirl hello.kirl