summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--README.org7
-rw-r--r--v/help.v6
2 files changed, 13 insertions, 0 deletions
diff --git a/README.org b/README.org
index 0fa1826..20db6f9 100644
--- a/README.org
+++ b/README.org
@@ -13,4 +13,11 @@ $ ./help
 akoizumi would you mind reading the fucking manual pages?
 #+END_SRC
 
+There's even a V spin available at ~v/~
+#+BEGIN_SRC sh
+$ cd v
+$ v -o help
+$ ./help
+#+END_SRC
+
 Licensed under [[file:COPYING][DPL-1.1]]
diff --git a/v/help.v b/v/help.v
new file mode 100644
index 0000000..08201ae
--- /dev/null
+++ b/v/help.v
@@ -0,0 +1,6 @@
+import os
+
+fn main() {
+	user := os.getenv('USER')
+	println('$user would you mind reading the fucking manual pages?')
+}