2021年12月21日火曜日

Debian 11(Bullseye)でGravity言語をインストールする。

Gravity言語は、軽量の動的型付け言語です。Debian 11(Bullseye)にインストールするには、以下の手順を実行します。

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

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

sudo apt-get -y install build-essential git

git clone https://github.com/marcobambini/gravity.git

sudo mv gravity /opt

cd /opt/gravity

make

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

テスト実行

以下のコマンドで、Hello World!を表示します。
cd

cat << EOF > helloworld.gravity
func main()
{
  System.print("Hello World!");
}
EOF

gravity -q helloworld.gravity

関連情報

・プロジェクトwebサイト
https://marcobambini.github.io/gravity/#/

0 件のコメント:

コメントを投稿