Files
llgo/cl/_testrt/hello/in.go
2025-04-03 16:26:11 +08:00

11 lines
216 B
Go

package main
import "github.com/goplus/llgo/cl/_testrt/hello/libc"
var format = [...]int8{'H', 'e', 'l', 'l', 'o', ' ', '%', 'd', '\n', 0}
func main() {
sfmt := &format[0]
libc.Printf(sfmt, libc.Strlen(sfmt))
}