Сообщения

Rust, VSCode

https://levelup.gitconnected.com/rust-with-visual-studio-code-46404befed8 ❯ mkdir -p ~/coding/rust ❯ cd ~/coding/rust ❯ cargo new HelloWorld Created binary (application) `HelloWorld` package ❯ cargo new HelloWorld --bin crate `HelloWorld` should have a snake case name note: `#[warn(non_snake_case)]` on by default help: convert the identifier to snake case: `hello_world` To correct this issue, open  Cargo.toml  and change  name  entry to snake case [package] name = “hello_world” ....

Rust, Start

https://www.rust-lang.org/ Book: https://doc.rust-lang.org/stable/book/ Install: https://rustup.rs/ Examples: https://doc.rust-lang.org/stable/rust-by-example/ Standard Library: https://doc.rust-lang.org/stable/std/ rustycrate.ru Video: https://www.youtube.com/watch?v=WV-m7xRlXMs https://t.me/rustlang_ru