ssa: Lookup

This commit is contained in:
xushiwei
2024-05-06 01:17:37 +08:00
parent 26b812a62a
commit df333fb144
4 changed files with 30 additions and 5 deletions

View File

@@ -1,13 +1,10 @@
package main
/*
import (
"github.com/goplus/llgo/internal/runtime/c"
)
*/
func main() {
a := map[int]int{23: 100, 7: 29}
_ = a
// c.Printf(c.Str("Hello %d\n"), a[23])
c.Printf(c.Str("Hello %d\n"), a[23])
}