Crystal

来自 Arch Linux 中文维基

Crystal 是一种静态的编译型编程语言,具有受 Ruby 启发的语法和全局类型推断。

安装[编辑 | 编辑源代码]

要安装 Cryst,安装 crystal。要安装最新的开发版本,请安装 crystal-gitAUR

用法[编辑 | 编辑源代码]

编译和运行 Crystal 程序:

 $ crystal hello_world.cr

要将 Crystal 程序编译为二进制文件:

 $ crystal build hello_world.cr

编译为优化的二进制文件:

 $ crystal build --release hello_world.cr

有关更多选项,请参见:

 $ crystal help

Shards[编辑 | 编辑源代码]

仓库中也提供了依赖管理器 shards。要安装它,请安装 shards。要安装最新的开发版本,请安装 shards-gitAUR

参见[编辑 | 编辑源代码]