bottest/tests/unit/basic/basic_keywords_math_random.rs

17 lines
212 B
Rust
Raw Normal View History

2025-12-23 18:41:29 -03:00
#![allow(unused_imports)]
#![allow(unused_variables)]
#![allow(dead_code)]
#[test]
2025-12-23 18:41:29 -03:00
fn test_mod() {
assert_eq!(17 % 5, 2);
assert_eq!(10 % 3, 1);
assert_eq!(0 % 5, 0);
}