I'm having trouble importing a go library. The library is in a folder in the same project directory and always the import error, when not the import error, of the error to access the function.
main.go
packagemainimport("fmt"
"./test"
)
func main(){
test.makeCalc(1,1)
fmt.Println("test.makeCalc(3,6)")
}
test.go
package test
func makeCalc(x int, y int) int{
return x+y
}