Comment out web interpreter for time being

This commit is contained in:
Greg Shuflin 2021-10-13 01:01:55 -07:00
parent d3ebcc9654
commit 7b7e20859f
1 changed files with 1 additions and 1 deletions

View File

@ -31,6 +31,6 @@ fn main() {
fn command_line_options() -> getopts::Options {
let mut options = getopts::Options::new();
options.optflag("h", "help", "Show help text");
options.optflag("w", "webapp", "Start up web interpreter");
//options.optflag("w", "webapp", "Start up web interpreter");
options
}