Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
runtime
/
native-print-no-runtime.rs
blob: f0ed7d97b2cafb758f4f2059a45e6b38650c16f6 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
#![
feature
(
start
)]
#[
start
]
pub
fn
main
(
_
:
isize
,
_
:
*
const
*
const
u8
)
->
isize
{
println
!(
"hello"
);
0
}