安装
curl https://sh.rustup.rs -sSf | sh
hello world
执行
cargo new helloworld
会自动生成helloworld目录1
2
3
4// main.rs
fn main() {
println!("Hello, world!");
}执行
cargo build
构建,执行二进制文件运行也可以执行
cargo run
直接运行
rust xdp demo
参考这个:https://www.cnblogs.com/davad/p/16883527.html