冬休みの自由研究2019
数年前に輪講っぽい感じで Rust の勉強をやったんだけど、wasm だったりイロイロ試したいことも増えたのでここいらでもう一度入門してみる Rust 製のターミナル
brew cask install alacritty
rust のセットアップ
curl https://sh.rustup.rs -sSf | sh
$HOME/.cargo/bin を $PATH に追加
nushell
cargo install nu
code:main.rs
fn main() {
println!("Hello, World!!");
}
rustc main.rs
code:shell
./main
Hello, World!!
code:Cargo.toml
name = "hello_world"
version = "0.0.1"
code:shell
cargo build
Compiling hello_world v0.0.1 (/Users/jigsaw/tmp/hello_world)
code:shell
./target/debug/hello_world
Hello, World!!
code:shell
cargo run
Running target/debug/hello_world
Hello, World!!