diff options
author | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-24 14:02:31 +0000 |
---|---|---|
committer | Aoi Koizumi (古泉 あおい) <novaburst@kalli.st> | 2022-05-24 14:02:31 +0000 |
commit | c490f426c4b4c81c13d8d703e3bc9b2a97aeaad9 (patch) | |
tree | c72ba4187c3dc5a8ff794b49e6c20e3a5e5f21aa | |
parent | 00b8e0f6c7960d2ad54f33c31fbe4ab52516e30e (diff) | |
download | help-c490f426c4b4c81c13d8d703e3bc9b2a97aeaad9.tar.gz |
How to write definitely not useful code in a bunch of langs ;P
-rw-r--r-- | lua/help.lua | 1 | ||||
-rw-r--r-- | main.go | 4 | ||||
-rw-r--r-- | sh/help.sh | 2 | ||||
-rw-r--r-- | v/help.v | 5 |
4 files changed, 5 insertions, 7 deletions
diff --git a/lua/help.lua b/lua/help.lua new file mode 100644 index 0000000..d911c17 --- /dev/null +++ b/lua/help.lua @@ -0,0 +1 @@ +print("would you mind reading the fucking manual pages?") diff --git a/main.go b/main.go index 29109ca..7167706 100644 --- a/main.go +++ b/main.go @@ -1,11 +1,9 @@ package main import ( - "os" "fmt" ) func main() { - user := os.Getenv("USER") - fmt.Printf("%s would you mind reading the fucking manual pages?\n", user) + fmt.Printf("would you mind reading the fucking manual pages?\n") } diff --git a/sh/help.sh b/sh/help.sh new file mode 100644 index 0000000..f48a28a --- /dev/null +++ b/sh/help.sh @@ -0,0 +1,2 @@ +#!/bin/sh +printf "would you mind reading the fucking manual pages?\n" diff --git a/v/help.v b/v/help.v index 08201ae..07663af 100644 --- a/v/help.v +++ b/v/help.v @@ -1,6 +1,3 @@ -import os - fn main() { - user := os.getenv('USER') - println('$user would you mind reading the fucking manual pages?') + println('would you mind reading the fucking manual pages?') } |