Rustをやっていく

Install Rust - Rust Programming Language

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

compile

sharo@kirima:~$ rustc hello.rs -o hello
sharo@kirima:~$ ./hello
Hello, world!

cargo

sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04$ cargo new hello
     Created binary (application) `hello` package
sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04$ cd hello/
sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04/hello$ cargo build
   Compiling hello v0.1.0 (/home/sharo/Github/test_for_rust_on_ubuntu_20p04/hello)
    Finished dev [unoptimized + debuginfo] target(s) in 0.31s
sharo@kirima:~/Github/test_for_rust_on_ubuntu_20p04/hello$ cargo run
    Finished dev [unoptimized + debuginfo] target(s) in 0.02s
     Running `target/debug/hello`
Hello, world!

GitHub - takurx/test_for_rust_on_ubuntu_20p04: test for Rust on ubuntu 20.04

Ref.

UbuntuにRustをインストールする - Qiita

GitHub - nrf-rs/nrf52832-pac: Peripheral Access Crate for the nRF52832 microcontroller

Rust now runs on the new Cortex-M33 based Nordic nRF9160 LTE SiP - The Rust Programming Language Forum

nrf91 - Rust

nrf-hal/boards at master · nrf-rs/nrf-hal · GitHub

Embedded Rust - nrf52840 programming : rust

組込み/ベアメタルRustクックブック(電子版) - sabizen - BOOTH

Rustで組み込みプログラミングの第一歩、LチカとHello Worldを試してみた | Developers.IO

組込みRust考察①~効率良く安全な組込み開発をしたい~ - 低レイヤ強くなりたい組込み屋さんのブログ