"首次提交"

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

@ -0,0 +1 @@
/target

View File

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

View File

@ -0,0 +1,10 @@
use add_one;
fn main() {
println!("Hello, world!");
add_one::add(1, 2);
}
#[test]
fn it_works_add_one() {
assert_eq!(add_one::add(1, 2), 3);
}