Any thoughts on following error? ( I'm using go1.5.1 darwin/amd64 on OSX 10.10.5 ( Yosemite ) with latest ForestDB )
package main
import (
"fmt"
"github.com/couchbase/goforestdb"
)
func main() {
fmt.Println("test")
// Open a database
db, _ := forestdb.Open("test", nil)
// Close it properly when we're done
defer db.Close()
}
Any thoughts on following error? ( I'm using
go1.5.1 darwin/amd64
onOSX 10.10.5
( Yosemite ) with latest ForestDB )goforestdb
tests are okay;