Add base crystal help file with build commands

This commit is contained in:
Donovan Glover 2017-11-11 23:48:52 -05:00
parent b47163448c
commit 5096c4fac8
No known key found for this signature in database
GPG Key ID: 8FC5F7D90A5D8F4D

8
help/crystal.md Normal file
View File

@ -0,0 +1,8 @@
# 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