mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
10 lines
162 B
V
10 lines
162 B
V
|
module main
|
||
|
|
||
|
fn main() {
|
||
|
valid_args_quantity_or_show_help()
|
||
|
mut fdr := Finder{}
|
||
|
fdr.configure_from_arguments()
|
||
|
fdr.search_for_matches()
|
||
|
fdr.show_results()
|
||
|
}
|