Files
llgo/compiler/cl/_testrt/hello/in.go

11 lines
225 B
Go
Raw Normal View History

2024-04-26 05:51:30 +08:00
package main
2025-01-09 00:47:45 +08:00
import "github.com/goplus/llgo/compiler/cl/_testrt/hello/libc"
2024-04-26 05:51:30 +08:00
var format = [...]int8{'H', 'e', 'l', 'l', 'o', ' ', '%', 'd', '\n', 0}
func main() {
sfmt := &format[0]
libc.Printf(sfmt, libc.Strlen(sfmt))
}