From e928ff37280ca9f51f440dd747010cac85e8c9f0 Mon Sep 17 00:00:00 2001 From: raul Date: Mon, 22 Jan 2024 14:21:34 +0100 Subject: [PATCH] Added mclibre section Gonna be translating as many of the Python exercises from mclibre to Golang as I can, seems like a fun task --- mclibre/README.md | 4 ++++ {temp-conversion => mclibre/temp-conversion}/go.mod | 0 {temp-conversion => mclibre/temp-conversion}/main.go | 0 3 files changed, 4 insertions(+) create mode 100644 mclibre/README.md rename {temp-conversion => mclibre/temp-conversion}/go.mod (100%) rename {temp-conversion => mclibre/temp-conversion}/main.go (100%) diff --git a/mclibre/README.md b/mclibre/README.md new file mode 100644 index 0000000..1b96125 --- /dev/null +++ b/mclibre/README.md @@ -0,0 +1,4 @@ +# mclibre exercises + +These are exercises from [this website](https://www.mclibre.org/consultar/python/) that I'm translating from Python +to Golang diff --git a/temp-conversion/go.mod b/mclibre/temp-conversion/go.mod similarity index 100% rename from temp-conversion/go.mod rename to mclibre/temp-conversion/go.mod diff --git a/temp-conversion/main.go b/mclibre/temp-conversion/main.go similarity index 100% rename from temp-conversion/main.go rename to mclibre/temp-conversion/main.go