v/cmd/tools/vwhere/vwhere.v
2022-07-15 07:59:11 +03:00

14 lines
205 B
V
Executable file

module main
import os
fn main() {
args := os.args[2..]
valid_args_quantity_or_show_help(args)
mut fdr := Finder{}
fdr.configure_from_arguments(args)
fdr.search_for_matches()
fdr.show_results()
}