1
2
3
4
5
extern crate rand;

pub fn flip() -> bool {
    rand::random::<bool>()
}