Sign in
kernel
/
pub
/
scm
/
linux
/
kernel
/
git
/
phy
/
linux-phy
/
fbde105f132f30aff25f3acb1c287e95d5452c9c
/
.
/
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
);
}