1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/cli/version.v

25 lines
417 B
V
Raw Normal View History

2019-11-21 15:03:12 +03:00
module cli
fn version_flag() Flag {
return Flag{
flag: .bool,
name: 'version',
abbrev: 'v',
description: 'Prints version information',
}
}
fn version_cmd() Command {
return Command{
name: 'version'
description: 'Prints version information',
execute: version_func,
}
}
2020-04-02 17:04:53 +03:00
fn version_func(version_cmd Command) {
2019-11-21 15:03:12 +03:00
cmd := version_cmd.parent
version := '${cmd.name} v${cmd.version}'
println(version)
}