Hariprasath_Ganapathi 38656c82cc
Update functions1.rs
corrected code
2024-11-13 10:41:09 +05:30

9 lines
178 B
Rust

// TODO: Add some function with the name `call_me` without arguments or a return value.
fn main() {
call_me(); // Don't change this line
}
fn call_me(){
println!{"@"}
}