Learn Rust: Build Rock, Paper, Scissors

Build your first real Rust program: a game of rock, paper, scissors against the computer. You will read keyboard input, add your first external crate, model the three moves with an enum, and decide the winner with match. In this episode: Adding and using the rand crate Modeling data with an enum Turning input into a value with Option and match Looping and keeping score Resources: Rustlings exercises: https://github.com/rust-lang/rustlings/ Rust by Example: https://doc.rust-lang.org/rust-by-exa... More ways to learn Rust: https://www.rust-lang.org/learn/ https://github.com/willvelida/learn-r... #Rust #RustLang #Programming