"首次提交"

This commit is contained in:
2024-06-08 15:01:12 +08:00
parent 6e0f708d0a
commit 84349a2469
112 changed files with 3272 additions and 0 deletions

1
hello_cargo/.gitignore vendored Executable file
View File

@ -0,0 +1 @@
/target

8
hello_cargo/Cargo.toml Executable file
View File

@ -0,0 +1,8 @@
[package]
name = "hello_cargo"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

3
hello_cargo/src/main.rs Executable file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}