Why Rust?

fn main(){
println!("Hello world");
}

Rust breaks down these barriers by eliminating the old pitfalls and providing a friendly, polished set of tools to help you along the way. Programmers who need to “dip down” into lower-level control can do so with Rust, without taking on the customary risk of crashes or security holes, and without having to learn the fine points of a fickle toolchain. Better yet, the language is designed to guide you naturally towards reliable code that is efficient in terms of speed and memory usage.
The Book of Rust

Gambar 1. Rust Playground

Ternyata untuk mencoba bahasa rust kita tidak perlu melakukan pengunduhan di komputer lokal. Rust playground adalah online IDE yang dapat digunakan secara gratis untuk ngoding.


Part 1: Penjelasan Struktur Program Game Tebak Angka Menggunakan Rust [baca]

Part 2: Mutable VS Immutable pada Rust [baca]

Part 3: Tipe Data Scalar dan Compound Pada Rust [baca]

Part 4: Function, Parameter, Statement, dan Expression Rust [baca]

Part 5: Control Flow Bahasa Pemrograman Rust [baca]

Part 6: Manajemen Memori Dengan Ownership Pada Rust [baca]

Part 7: References Sebagai Cara Meminjam Value Pada Rust [baca]

Part 8: Slice Sebagai Reference Pada Rust [baca]

Part 9: Struct Untuk Mengelompokan Data [baca]