From 722135b4cbcb6291ae1a7b95a42dfe92543ae6ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dalibor=20Markovi=C4=87?= Date: Sat, 30 May 2026 13:54:10 +0200 Subject: [PATCH] =?UTF-8?q?Inicijalno=20pode=C5=A1avanje=20projekta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- go.mod | 3 +++ main.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 go.mod create mode 100644 main.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..1c0e333 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module ntech + +go 1.22.2 diff --git a/main.go b/main.go new file mode 100644 index 0000000..04bc89e --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("NTech pokrenut") +}