Skip to content
This repository has been archived by the owner on Mar 11, 2019. It is now read-only.

Latest commit

 

History

History
34 lines (24 loc) · 552 Bytes

File metadata and controls

34 lines (24 loc) · 552 Bytes
layout title tags
post
Hello App
rust
hello
app

To create a new project, you can use Cargo:

$ cargo new hello

To compile it, type:

$ cd hello
$ cargo build

And then run it:

$ ./target/debug/hello

We can also use cargo run to compile and then run it, all in one step:

$ cargo run

For more information, please go to https://doc.rust-lang.org/cargo/getting-started/first-steps.html