github.com/goplus/llgo@v0.8.3/cl/_testrt/map/in.go (about)

     1  package main
     2  
     3  import (
     4  	"github.com/goplus/llgo/internal/runtime/c"
     5  )
     6  
     7  func main() {
     8  	a := map[int]int{23: 100, 7: 29}
     9  	c.Printf(c.Str("Hello %d\n"), a[23])
    10  }