Skip to content

Instantly share code, notes, and snippets.

View gilles-leblanc's full-sized avatar

Gilles Leblanc gilles-leblanc

View GitHub Profile
// main.rs
struct Counter {
hits: u32,
}
trait Logger {
// Log relevant message to standard output
fn log(&self, message: String);
struct Counter {
hits: u32,
}
trait Logger {
// Log relevant message to standard output
fn log(&self, message: String);
// Write some relevant information about self to log
fn write_state_to_log(&self);
// enums2.rs
use std::rand::Rng;
use std::rand;
enum CoordinateFormula {
FirstIteration,
SecondIteration,
SubsequentIteration,
}
fn main() {
let mut coordinate_formula = CoordinateFormula::new();
let (x1, y1) = coordinate_formula.calculate_coordinates(40);
println!("x {0} y {1}", x1, y1);
coordinate_formula = coordinate_formula.change_iteration();
let (x2, y2) = coordinate_formula.calculate_coordinates(40);
println!("x {0} y {1}", x2, y2);
coordinate_formula = coordinate_formula.change_iteration();
use std::rand::Rng;
use std::rand;
enum CoordinateFormula {
FirstIteration,
SecondIteration,
SubsequentIteration,
}
impl CoordinateFormula {
enum Iteration {
Initial,
NonInitial,
}
impl Iteration {
fn new() -> Iteration {
Initial
}
@gilles-leblanc
gilles-leblanc / gist:3bf16462f4604db479f5
Created June 4, 2014 01:27
Rust: pattern matching 3
fn factorial(number: int) -> int {
match number {
0 => 1,
x => x * factorial(x - 1),
}
}
fn fibonacci(number: int) -> int {
match number {
0 => 1,
@gilles-leblanc
gilles-leblanc / gist:4081b3fcd67a133a428d
Created June 4, 2014 01:26
Rust: pattern matching 2
match number {
2 => println!("It's two!"),
x if x < 10 => println!("lower than ten"),
11..12 => println!("eleven or twelve"),
_ => println!("anythingelse"),
}
@gilles-leblanc
gilles-leblanc / gist:1338065122f389bc5d90
Created June 4, 2014 01:25
Rust: pattern matching 1
let number = 5;
match number {
1 => println!("1"),
2 => println!("2"),
_ => println!("anythingelse"),
}
@gilles-leblanc
gilles-leblanc / pattern_matching.rs
Created June 4, 2014 01:23
Rust pattern matching full
// pattern_matching.rs
fn main() {
let number = 5;
// basic 'switch statement like behaviour
match number {
1 => println!("1"),
2 => println!("2"),
_ => println!("anythingelse"),
}