Add initial text

Tobias Eidelpes 2019-12-01 18:01:28 +00:00
parent 5109a6edd5
commit 114e4008ee

2
User-Guide.md Normal file

@ -0,0 +1,2 @@
## Compiling Rust programs
To make compiling as easy as possible (and allow single-file solutions), I want to avoid using [cargo](https://doc.rust-lang.org/cargo/). Rust programs can therefore be easily compiled with `rustc` by running the following command: `rustc <src-file>`. The resulting binary file can then be executed on linux by running `./main`.