I've been toying around Go for a couple of weeks now, so far so good. Now I am writing a program splitted across different files like this:
.
|-- geometry
| |-- cone
| `-- cone.go
|-- main.go
|-- Makefile
the problem is i can't import cone.go in the main.go, the compiler doesn't find it. Anybody?