Oshine

Results 13 issues of Oshine

### 1.The go code: ```go rl, err := readline.New("> ") if err != nil { fmt.Println("ERROR:",err) return } defer rl.Close() if str, err := rl.Readline(); err == nil { fmt.Println(str)...

- [x] GopherLua is a Lua5.1 implementation. You should be familiar with Lua programming language. Have you read [Lua 5.1 reference manual](http://www.lua.org/manual/5.1/) carefully? - [x] GopherLua is a Lua5.1 implementation....

s1, err := astisub.OpenFile("Call.Me.by.Your.Name.2017.BluRay.ass") if err != nil { return nil, err } // s1.items is nil, why ,if subtitle file is .srt ,it works.

![image](https://user-images.githubusercontent.com/26317003/161261325-f11895a8-7c51-40fd-94d1-cdff6ac02970.png) ![1648815278(1)](https://user-images.githubusercontent.com/26317003/161261339-80b9446b-0e87-4661-84a1-f976ae751679.png)

![1648727429(1)](https://user-images.githubusercontent.com/26317003/161048430-cdc1f633-5df1-440a-b7f3-16a29fc9948c.png)

# github.com/openset/php2go/php ..\..\pkg\mod\github.com\openset\[email protected]\php\directory.go:27:22: cannot use fd (type int) as type syscall.Handle in argument to syscall.Close Compilation finished with exit code 2 ``` // Closedir - Close directory's handle func Closedir(fd...

such as sql: SHOW CREATE TABLE ``` `order` ``` # ok SHOW CREATE TABLE order # error here is code below: ```go func createTableSQL(db *sql.DB, name string) (string, error) {...