blob: f25d62fa8c33532989ee7f44c14ab69a61c620b8 [file] [log] [blame] [edit]
#![feature(start)]
#[start]
fn start(_: isize, _: *const *const u8) -> isize {
println!("Hello from start!");
0
}