diff --git a/README.md b/README.md index e69de29..dd49f25 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,11 @@ +# Go Thesaurus (v2) + +A re-write of my old attempt at CLI thesaurus! + +## Usage + +```code + +``` + +## TODO diff --git a/go-thesaurus2 b/go-thesaurus2 new file mode 100755 index 0000000..3dab3c8 Binary files /dev/null and b/go-thesaurus2 differ diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..6a93842 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module go-thesaurus2 + +go 1.19 diff --git a/main.go b/main.go new file mode 100644 index 0000000..91e7378 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello World") +}