fn main() {
// println!("{}",add(2,3));
another_function();
}
fn another_function() {
let a = 666;
println!("Rust's first language!老鐵雙擊 {}",a);
}
執行程式碼
~ rustc 檔名.rs
~./檔名
本作品採用《CC 協議》,轉載必須註明作者和本文連結
fn main() {
// println!("{}",add(2,3));
another_function();
}
fn another_function() {
let a = 666;
println!("Rust's first language!老鐵雙擊 {}",a);
}
執行程式碼
~ rustc 檔名.rs
~./檔名
本作品採用《CC 協議》,轉載必須註明作者和本文連結