mirror of
https://github.com/eunomia-bpf/bpf-developer-tutorial.git
synced 2026-02-07 20:34:22 +08:00
9 lines
91 B
Rust
9 lines
91 B
Rust
pub fn hello() -> i32 {
|
|
println!("Hello, world!");
|
|
0
|
|
}
|
|
|
|
fn main() {
|
|
hello();
|
|
}
|