Merge pull request #870 from alx741/rustc

rustc: add page
waldyrious/alt-syntax
Leandro Ostera 2016-05-07 12:48:18 +02:00
commit 1aa0d2e99f
1 changed files with 16 additions and 0 deletions

16
pages/common/rustc.md Normal file
View File

@ -0,0 +1,16 @@
# rustc
> The Rust compiler.
> Processes, compiles and links Rust language source files.
- Compile a single file:
`rustc {{file.rs}}`
- Compile with high optimization:
`rustc -O {{file.rs}}`
- Compile with debugging information:
`rustc -g {{file.rs}}`