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

cli: various improvements (#6180)

This commit is contained in:
Lukas Neubert
2020-08-20 23:14:53 +02:00
committed by GitHub
parent b88569c845
commit 93e6c3df6a
6 changed files with 71 additions and 73 deletions

View File

@@ -6,14 +6,14 @@ fn version_flag(with_abbrev bool) Flag {
flag: .bool
name: 'version'
abbrev: sabbrev
description: 'Prints version information'
description: 'Prints version information.'
}
}
fn version_cmd() Command {
return Command{
name: 'version'
description: 'Prints version information'
description: 'Prints version information.'
execute: version_func
}
}