xcv
This commit is contained in:
parent
48f498a1dd
commit
1f098de743
3
book_with_bridge/bare_return/go.mod
Normal file
3
book_with_bridge/bare_return/go.mod
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
module main
|
||||||
|
|
||||||
|
go 1.24.5
|
||||||
14
book_with_bridge/bare_return/main.go
Normal file
14
book_with_bridge/bare_return/main.go
Normal 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)
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user