「Crystal」の版間の差分
ナビゲーションに移動
検索に移動
(同期) |
Kusanaginoturugi (トーク | 投稿記録) (→インストール: 英語版より記事の一部を転載) |
||
6行目: | 6行目: | ||
Crystal をインストールするには、{{pkg|crystal}} を[[インストール]]してください。最新の開発版をインストールしたい場合は {{AUR|crystal-git}} をインストールしてください。 |
Crystal をインストールするには、{{pkg|crystal}} を[[インストール]]してください。最新の開発版をインストールしたい場合は {{AUR|crystal-git}} をインストールしてください。 |
||
+ | |||
+ | The dependency manager ''shards'' is also available in the repositories; [[install]] the {{Pkg|shards}} package or {{AUR|shards-git}} for the latest development version. |
||
== 使用方法 == |
== 使用方法 == |
2021年7月23日 (金) 11:13時点における版
Crystal は Ruby 風な文法とグローバルな型推論を持った静的型付けのコンパイラプログラミング言語です。
インストール
Crystal をインストールするには、crystal をインストールしてください。最新の開発版をインストールしたい場合は crystal-gitAUR をインストールしてください。
The dependency manager shards is also available in the repositories; install the shards package or shards-gitAUR for the latest development version.
使用方法
Crystal のプログラムをコンパイル・実行するには:
$ crystal hello_world.cr
Crystal のプログラムをバイナリにコンパイルするには:
$ crystal build hello_world.cr
最適化されたバイナリをコンパイルするには:
$ crystal build --release hello_world.cr
他のオプションは次のコマンドで確認:
$ crystal help
Shards
依存関係マネージャの shards は shards パッケージでインストールできます。最新の開発版は shards-gitAUR パッケージでインストールできます。