Skip to content

Instantly share code, notes, and snippets.

View dabcoder's full-sized avatar

David B. dabcoder

  • Paris
View GitHub Profile
@maxime-gaudron
maxime-gaudron / main.rs
Last active January 16, 2017 19:27 — forked from dabcoder/main.rs
Rust-Paper-Scissors
extern crate rand;
use std::io;
use rand::Rng;
fn main() {
//Player's turn
println!("1 - Rock, 2 - Paper, 3 - Scissors");
let mut players_choice = String::new();