mirror of
https://github.com/Noratrieb/mono-fmt.git
synced 2026-01-16 08:15:04 +01:00
numbers, yee haw
This commit is contained in:
parent
166b495586
commit
81f0b8d9cd
6 changed files with 414 additions and 227 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue