single.rs 158 B

123456789101112
  1. // SPDX-License-Identifier: GPL-2.0
  2. //! Rust single host program sample.
  3. mod a;
  4. mod b;
  5. fn main() {
  6. println!("Hello world!");
  7. a::f(b::CONSTANT);
  8. }