Skip to content

marti1125/rust_by_examples

Repository files navigation

##Learning Rust

Using Rust $ rustc 1.1.0 (35ceea399 2015-06-19)

  • Create a new project
    • $ cargo new hello_world --bin
  • Build
    • $ cargo build
  • Release
    • $ cargo build --release

Rust language support in Atom