Files
bpf-developer-tutorial/37-uprobe-rust/helloworld/src/main.rs

9 lines
91 B
Rust

pub fn hello() -> i32 {
println!("Hello, world!");
0
}
fn main() {
hello();
}