"首次提交"
This commit is contained in:
1
workspace_learn/add/adder1/.gitignore
vendored
Executable file
1
workspace_learn/add/adder1/.gitignore
vendored
Executable file
@ -0,0 +1 @@
|
||||
/target
|
10
workspace_learn/add/adder1/Cargo.toml
Executable file
10
workspace_learn/add/adder1/Cargo.toml
Executable 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" }
|
5
workspace_learn/add/adder1/src/main.rs
Executable file
5
workspace_learn/add/adder1/src/main.rs
Executable file
@ -0,0 +1,5 @@
|
||||
use add_one;
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
println!("2 + 3 = {}", add_one::add(2, 3));
|
||||
}
|
Reference in New Issue
Block a user