Files
ultimate_rust2/example/hello/src/main.rs
2021-06-12 23:36:49 -06:00

11 lines
113 B
Rust

fn main() {}
#[cfg(test)]
mod test {
#[test]
fn the_bin_test() {
assert_eq!(1 + 1, 2);
}
}