📜  rust hello world - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:20.257000             🧑  作者: Mango

代码示例2
// This code is editable, feel free to hack it!
// This is the main function
fn main() {
    // Statements here are executed when the compiled binary is called

    // Print text to the console
    println!("Hello World!");
}