exercism.org/rust/hello-world/tests/hello-world.rs

5 lines
84 B
Rust
Raw Normal View History

2024-03-24 21:06:12 +01:00
#[test]
fn hello_world() {
assert_eq!("Hello, World!", hello_world::hello());
}