| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Rust」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
28行目: 28行目:
 
     Running `target/debug/hello`
 
     Running `target/debug/hello`
 
Hello, world!
 
Hello, world!
 +
</pre>
 +
*クリーン
 +
<pre>
 +
$ cargo clean
 
</pre>
 
</pre>

2022年1月17日 (月) 15:16時点における版

Rust

Install

Uninstall

rustup self uninstall

Mac


curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
  • Rustの開発環境において、全てのツールは~/.cargo/binディレクトリにインストールされるため、PATHを通す

開発

  • パッケージの生成
$ cargo new --bin hello
  • 実行
$ cd hello
$ cargo run
   Compiling hello v0.1.0 (/Users/hirotoyagi/Workspaces/rust/lesson/hello)
    Finished dev [unoptimized + debuginfo] target(s) in 7.21s
     Running `target/debug/hello`
Hello, world!
  • クリーン
$ cargo clean