aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/old/vlib/cli/version.v
diff options
context:
space:
mode:
Diffstat (limited to 'v_windows/v/old/vlib/cli/version.v')
-rw-r--r--v_windows/v/old/vlib/cli/version.v25
1 files changed, 25 insertions, 0 deletions
diff --git a/v_windows/v/old/vlib/cli/version.v b/v_windows/v/old/vlib/cli/version.v
new file mode 100644
index 0000000..0f3f583
--- /dev/null
+++ b/v_windows/v/old/vlib/cli/version.v
@@ -0,0 +1,25 @@
+module cli
+
+fn version_flag(with_abbrev bool) Flag {
+ sabbrev := if with_abbrev { 'v' } else { '' }
+ return Flag{
+ flag: .bool
+ name: 'version'
+ abbrev: sabbrev
+ description: 'Prints version information.'
+ }
+}
+
+fn version_cmd() Command {
+ return Command{
+ name: 'version'
+ description: 'Prints version information.'
+ execute: version_func
+ }
+}
+
+fn version_func(version_cmd Command) ? {
+ cmd := version_cmd.parent
+ version := '$cmd.name version $cmd.version'
+ println(version)
+}