Files
android_kernel_samsung_sm86…/samples/rust/hostprogs/single.rs
2025-02-18 16:35:45 +09:00

13 line
158 B
Rust
Executable File

// SPDX-License-Identifier: GPL-2.0
//! Rust single host program sample.
mod a;
mod b;
fn main() {
println!("Hello world!");
a::f(b::CONSTANT);
}