mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-31 13:40:15 +03:00
9 lines
124 B
Rust
9 lines
124 B
Rust
#![feature(start)]
|
|
|
|
#[start]
|
|
fn start(_: isize, _: *const *const u8) -> isize {
|
|
println!("Hello from start!");
|
|
|
|
0
|
|
}
|