1*e4fc6580SMiguel Ojeda // SPDX-License-Identifier: GPL-2.0 2*e4fc6580SMiguel Ojeda 3*e4fc6580SMiguel Ojeda //! Rust single host program sample: module `a`. 4*e4fc6580SMiguel Ojeda f(x: i32)5*e4fc6580SMiguel Ojedapub(crate) fn f(x: i32) { 6*e4fc6580SMiguel Ojeda println!("The number is {}.", x); 7*e4fc6580SMiguel Ojeda } 8