Open2

Rustメモ

kentamakentama

インストール

asdf plugin add rust
asdf list all rust
asdf install rust 1.76.0
asdf global rust 1.76.0

確認

rustc --version
rustc 1.76.0 (07dca489a 2024-02-04)
kentamakentama

Hello World

main.rs
fn main() {
    println!("Hello, world!");
}
rustc main.rs
./main
Hello, world!