Initial commit.

This commit is contained in:
rust-lang.xfoss.com
2023-03-27 14:33:48 +08:00
commit cf2b9a266c
266 changed files with 23587 additions and 0 deletions

8
hello_cargo/Cargo.toml Normal 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]

4
hello_cargo/src/main.rs Normal file
View File

@@ -0,0 +1,4 @@
fn main() {
// 这是注释。
println! ("Hello, Cargo!");
}