1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#![allow(non_snake_case)]
#![allow(unused_parens)]
#![allow(unused_doc_comments)]

/**
 * entry function.
 * 
 */

// pub use rand;

pub fn start()
{    
    println!("start...");

    // let challenge = rand::random::<u32>();
    // println!("{:08x}",challenge);
    // assert!(false);
}