Minor linting and README changes

This commit is contained in:
Juno Takano 2025-12-20 21:25:48 -03:00
commit df61b2c779
3 changed files with 24 additions and 24 deletions

View file

@ -1,6 +1,6 @@
#[test]
fn add() {
let e = 0_i32;
let n = 0_i32;
let e = 0;
let n = 0;
assert_eq!(e, n);
}