【プログラミング】Ubuntuにrustを導入する

Ubuntuにプログラミング言語のrustを導入してみた。

環境

  • Ubuntu 18.04

手順

インストール

$ sudo apt install rustc
$

動作確認

$ vi helloworld.rs
fn main() {
  println!("hello world");
}
$ rustc helloworld.rs
$ ./helloworld
hello world
$

参考


以上

コメント