diff options
author | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-23 21:18:32 +0000 |
---|---|---|
committer | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-23 21:18:32 +0000 |
commit | fc0691fb1b92d481dffb54869270a9d5e54707de (patch) | |
tree | 3ddb9a874a3dc6753a39a953844f53762b33a64c | |
parent | 016e498d1b982966e624aa4ece71f985095b6a42 (diff) | |
download | help-fc0691fb1b92d481dffb54869270a9d5e54707de.tar.gz |
added a V variant
-rw-r--r-- | README.org | 7 | ||||
-rw-r--r-- | v/help.v | 6 |
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?') +} |