Sign in
android-kvm
/
linux
/
53a5182c8a6805d3096336709ba5790d16f8c369
/
.
/
samples
/
rust
/
hostprogs
/
a.rs
blob: f7a4a3d0f4e0b53bf3f61a2ba46bdff5a4139a6f [
file
] [
log
] [
blame
]
// SPDX-License-Identifier: GPL-2.0
//! Rust single host program sample: module `a`.
pub
(
crate
)
fn
f
(
x
:
i32
)
{
println
!(
"The number is {}."
,
x
);
}