This commit is contained in:
Alexander Pivkin 2025-12-28 07:36:12 +03:00
parent 48f498a1dd
commit 1f098de743
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,3 @@
module main
go 1.24.5

View File

@ -0,0 +1,14 @@
package main
import "fmt"
func main() {
kek := map[string]int{}
var lol []string
kek["alice"] = 1
fmt.Println(kek["alice"])
lol = append(lol,"string")
fmt.Println(lol)
}