Examples interface

Notes on Bext
This commit is contained in:
Jamie Hardt
2021-01-02 13:38:56 -08:00
parent b1c806598e
commit 8d55b126ae
4 changed files with 19 additions and 10 deletions

View File

@@ -4,15 +4,16 @@
//! This program demonstrates combining several wave files into a single
//! polyphonic wave file.
extern crate clap;
use std::io;
#[macro_use]
extern crate clap;
use clap::{Arg, App};
fn main() -> io::Result<()> {
let matches = App::new("wave-inter")
.version("0.1")
.author("Jamie Hardt")
.version(crate_version!())
.author(crate_authors!())
.about("Combine several wave files into a single polyphonic wave file.")
.arg(Arg::with_name("OUTPUT")
.long("output")