Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
will
/
linux.git
/
8a05ef7087166d7fa0de986fb6a2d97850dbd551
/
.
/
samples
/
rust
/
hostprogs
/
single.rs
blob: 8c48a119339a88587904cfcf9c1c7bade525cf01 [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
//! Rust single host program sample.
mod
a
;
mod
b
;
fn
main
()
{
println
!(
"Hello world!"
);
a
::
f
(
b
::
CONSTANT
);
}