demos: hello, concat

This commit is contained in:
xushiwei
2024-05-06 22:31:33 +08:00
parent c373a5b505
commit e6d06cc278
5 changed files with 64 additions and 2 deletions

13
_demo/hello/hello.go Normal file
View File

@@ -0,0 +1,13 @@
package main
import (
"github.com/goplus/llgo/c"
)
func main() {
c.Printf(c.Str("Hello world\n"))
}
/* Expected output:
Hello World
*/