1
0
forked from extern/nix-config
donovanglover-nix-config/help/crystal.md
2017-11-11 23:48:52 -05:00

9 lines
387 B
Markdown

# Crystal
- Build and run the program directly: `crystal <file>`
- Compile the program to binary: `crystal build <file>`
- Add `--progress` or `-p` to show build progress
- Add `--release` when you're building the release version (takes longer)
- Add `--no-debug` to increase the build speed (useful for dev builds)
- Add `-o` to specify the location of the output file