/// این تابع یک پیام خوشامدگویی ایجاد می‌کند.
pub fn greet(name: &str) -> String {
    format!("Hello, {}!", name)
}