Skip to content

Instantly share code, notes, and snippets.

View maxime-gaudron's full-sized avatar

Maxime Gaudron maxime-gaudron

View GitHub Profile
@maxime-gaudron
maxime-gaudron / 0_reuse_code.js
Created August 9, 2016 14:30
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@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();