Files
gt/tests/test.rs
T

5 lines
66 B
Rust
Raw Normal View History

2021-12-18 15:07:46 -05:00
#[test]
fn test_add() {
let x = 2 + 2;
assert_eq!(x, 4);
}