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
2022-07-15 07:59:11 +03:00

15 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()
}