Files
llgo/cl/_testrt/map/in.go

14 lines
175 B
Go
Raw Normal View History

2024-05-01 07:26:51 +08:00
package main
2024-05-01 07:37:38 +08:00
/*
2024-05-01 07:26:51 +08:00
import (
"github.com/goplus/llgo/internal/runtime/c"
)
2024-05-01 07:37:38 +08:00
*/
2024-05-01 07:26:51 +08:00
func main() {
a := map[int]int{23: 100, 7: 29}
2024-05-01 07:37:38 +08:00
_ = a
// c.Printf(c.Str("Hello %d\n"), a[23])
2024-05-01 07:26:51 +08:00
}