Skip to content

Instantly share code, notes, and snippets.

@BobGneu
Created February 7, 2018 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BobGneu/adf6b3554bd18a6b8007f0b81f2a6240 to your computer and use it in GitHub Desktop.
Save BobGneu/adf6b3554bd18a6b8007f0b81f2a6240 to your computer and use it in GitHub Desktop.
Rust Intro - Creating a new project 1
> mkdir rust_bin
> cd rust_bin
> cargo init --bin
Created binary (application) project
> cargo run
Compiling rust_bin v0.1.0 (file:///C:/Development/Rust/rust_bin)
Finished dev [unoptimized + debuginfo] target(s) in 0.54 secs
Running `target\debug\rust_bin.exe`
Hello, world!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment