This commit is contained in:
serafim.urukov 2025-10-01 15:08:37 +03:00
commit f6aa8ed12a
3 changed files with 11 additions and 0 deletions

3
ch1/go.mod Normal file
View File

@ -0,0 +1,3 @@
module hello_world
go 1.25.1

7
ch1/hello.go Normal file
View File

@ -0,0 +1,7 @@
package main // объявление пакета main
import "fmt" // импортирование пакета fmt для форматированного ввода-вывода
func main() {
fmt.Println("Hello, world!")
}

1
readme.md Normal file
View File

@ -0,0 +1 @@
В этом репозитории я храню все свои кусочки по изучению golang