Skip to content

Rust入門

   

なぜDiscordはGoからRustへ移行するのか - MISONLN41’s Blog を読んで興味がわいたのでインストールしてみた。

Rust をインストール - Rustプログラミング言語 のWSLのコマンドで。インストール完了後、WSLログインしなおさないとrustcコマンド使えなかった。

$ rustc --version
rustc 1.45.1 (c367798cf 2020-07-26)

ファイル作って

$ vim hello.rs
fn main() {
    println!("Hello, world!");
}

コンパイル&実行

$ rustc hello.rs
$ ./hello
Hello, world!

できた。