diff options
-rw-r--r-- | COPYING | 9 | ||||
-rw-r--r-- | README.org | 16 | ||||
-rw-r--r-- | go.mod | 3 | ||||
-rw-r--r-- | main.go | 11 |
4 files changed, 39 insertions, 0 deletions
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..26a2f5c --- /dev/null +++ b/COPYING @@ -0,0 +1,9 @@ +Discordian Public License (DPL) + +All Rites Reversed (ĸ) 3188 Aoi Koizumi <novaburst@kalli.st> + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.org b/README.org new file mode 100644 index 0000000..0fa1826 --- /dev/null +++ b/README.org @@ -0,0 +1,16 @@ +#+TITLE: help +#+DESCRIPTION: Often found as a bash built-in command, but this one does tell you to RTFM +#+AUTHOR: Aoi Koizumi + +* Compile +#+BEGIN_SRC sh +$ go build -v -o help +#+END_SRC + +* Run +#+BEGIN_SRC sh +$ ./help +akoizumi would you mind reading the fucking manual pages? +#+END_SRC + +Licensed under [[file:COPYING][DPL-1.1]] diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..6bd6170 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module gt.kalli.st/novaburst/help + +go 1.18 diff --git a/main.go b/main.go new file mode 100644 index 0000000..29109ca --- /dev/null +++ b/main.go @@ -0,0 +1,11 @@ +package main + +import ( + "os" + "fmt" +) + +func main() { + user := os.Getenv("USER") + fmt.Printf("%s would you mind reading the fucking manual pages?\n", user) +} |