diff --git a/README.md b/README.md index e19eae5..b04d83f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # go-sh-manymanuals -WIP \ No newline at end of file +> WIP + +## hacking + +Proposal co-learning co-hacking protocol: + +- Building blocks & learning programs go in [`exp`](./exp/). + +- When we are happy with a thing, we bring it into [`go-sh-manymanuals.go`](./go-sh-manymanuals.go). diff --git a/exp/.git-dont-delete-me b/exp/.git-dont-delete-me new file mode 100644 index 0000000..e69de29 diff --git a/go-sh-manymanuals.go b/go-sh-manymanuals.go new file mode 100644 index 0000000..2ca0d5e --- /dev/null +++ b/go-sh-manymanuals.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello, World!") +} diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..e3f567e --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module varia.zone/go-sh-manymanuals + +go 1.18