Files
llgo/compiler/cl/_testrt/hello/in.go
2025-01-09 00:47:45 +08:00

11 lines
225 B
Go

package main
import "github.com/goplus/llgo/compiler/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))
}