"首次提交"
This commit is contained in:
1
workspace_learn/add/add-one/.gitignore
vendored
Executable file
1
workspace_learn/add/add-one/.gitignore
vendored
Executable file
@ -0,0 +1 @@
|
||||
/target
|
9
workspace_learn/add/add-one/Cargo.toml
Executable file
9
workspace_learn/add/add-one/Cargo.toml
Executable file
@ -0,0 +1,9 @@
|
||||
[package]
|
||||
name = "add-one"
|
||||
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.7.3"
|
14
workspace_learn/add/add-one/src/lib.rs
Executable file
14
workspace_learn/add/add-one/src/lib.rs
Executable file
@ -0,0 +1,14 @@
|
||||
pub fn add(left: usize, right: usize) -> usize {
|
||||
left + right
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn it_works() {
|
||||
let result = add(2, 2);
|
||||
assert_eq!(result, 4);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user