cjson/sqlite README: remove install from source

This commit is contained in:
xushiwei
2024-06-20 00:44:15 +08:00
parent 4a1712f4cd
commit 0c1ef72285
4 changed files with 11 additions and 40 deletions

View File

@@ -2,11 +2,12 @@ package main
import (
"github.com/goplus/llgo/c"
"github.com/goplus/llgo/c/os"
"github.com/goplus/llgo/c/sqlite"
)
func main() {
c.Remove(c.Str("test.db"))
os.Remove(c.Str("test.db"))
db, err := sqlite.Open(c.Str("test.db"))
check(err, db, "sqlite: Open")