fn main() {
// Create a function
fn say_hello() {
println!("Hello from a function!");
}
say_hello(); // Call the function