finished ch11.1

This commit is contained in:
2025-02-10 17:29:19 -07:00
parent 07fcd28db2
commit 33b2893369
5 changed files with 755 additions and 25 deletions

View File

@ -7,8 +7,13 @@ mod tests {
use super::*;
#[test]
fn it_works() {
fn exploration() {
let result = add(2, 2);
assert_eq!(result, 4);
}
#[test]
fn another() {
panic!("Make this test fail");
}
}