program_executor/
program_executor.rs
1use std::path::PathBuf;
2
3use clap::Parser;
4
5#[derive(Debug, Parser)]
6struct ExecutorArgs {
7 #[arg(long)]
8 program_dir: PathBuf,
9 }
11
12fn main() {
13 let _args = ExecutorArgs::parse();
14 println!("Hello, world!");
16}