mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
10 lines
131 B
V
10 lines
131 B
V
import cli { Command }
|
|
import os
|
|
|
|
fn main() {
|
|
mut cmd := Command{}
|
|
cmd.defaults = struct {
|
|
man: false
|
|
}
|
|
cmd.parse(os.args)
|
|
}
|