Files
llgo/_embdemo/hello/main.go
2025-09-02 18:27:59 +08:00

12 lines
134 B
Go

package main
func myprint(s string) {
for i := 0; i < len(s); i++ {
WriteByte(s[i])
}
}
func main() {
myprint("hello world")
}