cl: to support stdin/stdout/stderr

This commit is contained in:
xushiwei
2024-05-01 20:05:28 +08:00
parent aa1d0b307b
commit afd02b3d78
4 changed files with 55 additions and 1 deletions

9
cl/_testrt/fprintf/in.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"github.com/goplus/llgo/internal/runtime/c"
)
func main() {
c.Fprintf(c.Stderr, c.Str("Hello %d\n"), 100)
}