2023-12-10 11:21:49 -06:00

12 lines
142 B
Rust

fn main() {
println!("Hello, world!");
}
#[cfg(test)]
mod test {
#[test]
fn test_something() {
assert_eq!(1, 1);
}
}