I'm studying go (golang) and I have a question about importing files, the doubt is about something "elemental" but I could not find anything specifically about it.
I have a package ( test ) arranged like this:
test -> main.go
-> test.go
Would you like to import test.go into main.go ?
//em javascript seria algo assim:
//main.go
require('./test.go')
How to do the same on go?