2022年6月12日日曜日

Debian 11(Bullseye)/Ubuntu 22.04でwren言語をインストールする

wrenは、小さい・速い・並列処理fiberを持つなどの特徴を持つスクリプティング言語です。

ビルド&インストール方法

以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install build-essential git

git clone https://github.com/wren-lang/wren.git

sudo mv wren /opt

cd /opt/wren/projects/make

make

sudo ln -s /opt/wren/bin/wren_test /usr/local/bin/wren_test

テスト実行

cd

cat << EOF > helloworld.wren
System.print("Hello, world!")
EOF

wren_test helloworld.wren

関連情報

・プロジェクトwebサイト
http://wren.io/

0 件のコメント:

コメントを投稿