diff --git a/src/main.rs b/src/main.rs index fb5456f..573f3dc 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,5 @@ //! Command line interface for the dust programming language. + use clap::{Parser, Subcommand}; use rustyline::{ completion::FilenameCompleter, @@ -25,10 +26,11 @@ struct Args { #[arg(short, long)] input: Option, - /// A path to file whose contents will be assigned to the "input" variable. + /// File whose contents will be assigned to the "input" variable. #[arg(short = 'p', long)] input_path: Option, + /// Command for alternate functionality besides running the source. #[command(subcommand)] cli_command: Option,