Skip to content

Commit f32d3f0

Browse files
committed
hello world project
1 parent 3a7a258 commit f32d3f0

File tree

4 files changed

+12
-0
lines changed

4 files changed

+12
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@
99

1010
# Generated by Cargo
1111
/target/
12+
*/target/

hello_world/Cargo.lock

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hello_world/Cargo.toml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[package]
2+
name = "hello_world"
3+
version = "0.1.0"
4+
authors = ["chunhui.yao <[email protected]>"]

hello_world/src/main.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
println!("Hello, world!");
3+
}

0 commit comments

Comments
 (0)