a.rs 153 B

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