Hello cargo bits
This commit is contained in:
parent
976a5f7a5d
commit
a2527b6fd7
2
rustbook/hello_cargo/.gitignore
vendored
Normal file
2
rustbook/hello_cargo/.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
/target/
|
||||
Cargo.lock
|
6
rustbook/hello_cargo/Cargo.toml
Normal file
6
rustbook/hello_cargo/Cargo.toml
Normal file
@ -0,0 +1,6 @@
|
||||
[package]
|
||||
name = "hello_cargo"
|
||||
version = "0.1.0"
|
||||
authors = ["Dan Buch <daniel.buch@gmail.com>"]
|
||||
|
||||
[dependencies]
|
3
rustbook/hello_cargo/src/main.rs
Normal file
3
rustbook/hello_cargo/src/main.rs
Normal file
@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in New Issue
Block a user