Files
byte-pusher-emu/src/args.rs

8 lines
191 B
Rust
Raw Normal View History

2024-02-16 23:13:59 +05:30
use clap::Parser;
#[derive(Debug,Parser)]
2024-02-19 23:03:33 +05:30
#[command(version, about, long_about = "Byte Pusher Emulator")]
2024-02-16 23:13:59 +05:30
pub struct BytePusherArgs{
2024-02-19 23:03:33 +05:30
#[arg(short,long)]
pub file_name:Option<String>
2024-02-16 23:13:59 +05:30
}