From 4f6a54d16395b34f09a22c2b7109c1c5efbbf832 Mon Sep 17 00:00:00 2001 From: 23_KorobovFD <23_KorobovFD@iux.local> Date: Sun, 17 May 2026 22:20:00 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20main.go?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 main.go diff --git a/main.go b/main.go new file mode 100644 index 0000000..a04d921 --- /dev/null +++ b/main.go @@ -0,0 +1,13 @@ +package main + +import ( + "fmt" + "gitlab.it.vstu.by/23_KorobovFD/cicd-lab-work/math" + "gitlab.it.vstu.by/23_KorobovFD/cicd-lab-work/stringutil" +) + +func main() { + fmt.Println("2 + 3 =", math.Add(2, 3)) + fmt.Println("5 - 2 =", math.Subtract(5, 2)) + fmt.Println("Reversed 'hello':", stringutil.Reverse("hello")) +} \ No newline at end of file