From 94eb0329bdb093b509084f6c3bbf332316ea653f Mon Sep 17 00:00:00 2001 From: Sebastian Steger Date: Wed, 20 Aug 2025 07:10:26 +0000 Subject: [PATCH] modules starting point --- go/03-modules/main.go | 5 +++++ go/03-modules/myMath/math.go | 0 2 files changed, 5 insertions(+) create mode 100644 go/03-modules/main.go create mode 100644 go/03-modules/myMath/math.go diff --git a/go/03-modules/main.go b/go/03-modules/main.go new file mode 100644 index 0000000..7905807 --- /dev/null +++ b/go/03-modules/main.go @@ -0,0 +1,5 @@ +package main + +func main() { + +} diff --git a/go/03-modules/myMath/math.go b/go/03-modules/myMath/math.go new file mode 100644 index 0000000..e69de29