"首次提交"

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
workspace_learn/add/adder1/.gitignore vendored Executable file
View File

@ -0,0 +1 @@
/target

View File

@ -0,0 +1,10 @@
[package]
name = "adder1"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.5"
add-one = { path = "../add-one" }

View File

@ -0,0 +1,5 @@
use add_one;
fn main() {
println!("Hello, world!");
println!("2 + 3 = {}", add_one::add(2, 3));
}