package main import "fmt" const ( cnstOtherFile = "Lorem" ) var varOtherFile = "ipsum" func test() { fmt.Println(cnstOtherFile, varOtherFile) }