2020年6月1日月曜日

Raspberry Pi(Raspbian Buster)/Debian 10(Buster)/Ubuntu 20.04でwren言語をインストールする。

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

〇ビルド&インストール方法
以下のコマンドを実行します。
sudo apt-get update

sudo apt-get -y install build-essential git

※ubuntu 20.04の場合は以下のコマンドでpythonも入れておきます。
sudo apt-get -y install python

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

sudo mv wren /opt

cd /opt/wren

make 

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

〇テスト実行
cd

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

wren helloworld.wren

〇関連情報
・プロジェクトwebサイト
http://wren.io/

0 件のコメント:

コメントを投稿