6 lines
124 B
Rust
6 lines
124 B
Rust
|
#[test]
|
||
|
fn echo_hello() {
|
||
|
// This function prints a greeting message to the console.
|
||
|
println!("Hello, Pingora!");
|
||
|
}
|