Sign in
android-kvm
/
linux
/
85eee6341abb81ac6a35062ffd5c3029eb53be6b
/
.
/
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
);
}