1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/cmd/tools/vwhere/vwhere.v

10 lines
162 B
V
Executable File

module main
fn main() {
valid_args_quantity_or_show_help()
mut fdr := Finder{}
fdr.configure_from_arguments()
fdr.search_for_matches()
fdr.show_results()
}