exercism/rust/hello-world/tests/hello_world.rs
2025-05-06 14:59:17 +03:00

4 lines
84 B
Rust

#[test]
fn hello_world() {
assert_eq!("Hello, World!", hello_world::hello());
}