numbers, yee haw

This commit is contained in:
nora 2022-09-13 21:58:30 +02:00
parent 166b495586
commit 81f0b8d9cd
6 changed files with 414 additions and 227 deletions

View file

@ -161,6 +161,12 @@ mod tests {
let result = format!("test {:?} hello", "uwu");
assert_eq!(result, r#"test "uwu" hello"#);
}
#[test]
fn number() {
let result = format!("a: {}", 32523532u64);
assert_eq!(result, "a: 32523532");
}
}
fn f() {