Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.1.
1// SPDX-License-Identifier: GPL-2.0
2
3//! Rust single host program sample: module `a`.
4
5pub(crate) fn f(x: i32) {
6    println!("The number is {}.", x);
7}