fdtd-coremem/src/bin/viewer.rs

13 lines
206 B
Rust
Raw Normal View History

use std::path::PathBuf;
use structopt::StructOpt;
#[derive(Debug, StructOpt)]
struct Opt {
directory: PathBuf,
}
fn main() {
let opt = Opt::from_args();
println!("hello, world! {:?}", opt);
}