From 791042057f5c3f50072363e90a05ffa4c8cbcb7f Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 17 Jul 2025 05:01:53 +0300 Subject: [PATCH] first commit --- .gitignore | 0 go.mod | 3 +++ main.go | 21 +++++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 .gitignore create mode 100644 go.mod create mode 100644 main.go diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..ddb8f0b --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module LogDex-ID + +go 1.24 diff --git a/main.go b/main.go new file mode 100644 index 0000000..df6b8ab --- /dev/null +++ b/main.go @@ -0,0 +1,21 @@ +package main + +import ( + "fmt" +) + +//TIP

To run your code, right-click the code and select Run.

Alternatively, click +// the icon in the gutter and select the Run menu item from here.

+ +func main() { + //TIP

Press when your caret is at the underlined text + // to see how GoLand suggests fixing the warning.

Alternatively, if available, click the lightbulb to view possible fixes.

+ s := "gopher" + fmt.Printf("Hello and welcome, %s!\n", s) + + for i := 1; i <= 5; i++ { + //TIP

To start your debugging session, right-click your code in the editor and select the Debug option.

We have set one breakpoint + // for you, but you can always add more by pressing .

+ fmt.Println("i =", 100/i) + } +} \ No newline at end of file