repo.or.cz
/
drm
/
drm-misc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git]
/
samples
/
rust
/
hostprogs
/
single.rs
blob
8c48a119339a88587904cfcf9c1c7bade525cf01
1
// SPDX-License-Identifier: GPL-2.0
2
3
//! Rust single host program sample.
4
5
mod a;
6
mod b;
7
8
fn main() {
9
println!("Hello world!");
10
11
a::f(b::CONSTANT);
12
}