Hello World

Mickey·2022년 1월 20일

Rust By Example

목록 보기
2/4
post-thumbnail

https://doc.rust-lang.org/rust-by-example/hello.html

전통적인 Hello World 프로그램

fn main() {
    println!("Hello World!");
}

Activity

fn main() {
    println!("Hello World!");
    println!("I'm a Rustacean!");
}

profile
Mickey

0개의 댓글