brintos

brintos / linux-shallow public Read only

0
0
Text · 153 B · f7a4a3d Raw
8 lines · rust
1// SPDX-License-Identifier: GPL-2.02 3//! Rust single host program sample: module `a`.4 5pub(crate) fn f(x: i32) {6    println!("The number is {}.", x);7}8