I have two files main.go which is under package main, and another file with some functions in the package called functions.
main.go
package main
My question is:
You import the package by its import path, and reference all its exported symbols (those starting with a capital letter) through the package name, like so:
import "MyProj/functions" functions.GetValue()