Golang : Call function from another package
Very often new comers learning Go will encounter problem in calling functions from another library or package. Go needs to know the path to the function and you will need to specify this with the import
directive. Also remember that for the function to be exportable(called from other function), the first character must be capital. For example, SayHello
versus sayHello
Typical way of accessing a function is done this way
variable := package.FunctionName()
such as below
Location : (Project/main.go)
package main
import "fmt"
import "Project/myownfunctions" // <-- remember to include the directory/package name - in this case "Project"
func main(){
variable := myownfunctions.SayHello() //<---- function name must be capital!
fmt.Println(variable)
}
and in another file
Location : (Project/myownfunctions/myownfunctions.go)
package myownfunctions
func SayHello() string{
return "Hello from this another package"
}
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+26.5k Golang : Convert string to array/slice
+2.5k Golang : Handling image beyond OpenCV video capture boundary
+30.2k Golang : Convert(cast) int64 to string
+4.7k Golang : Accessing content anonymously with Tor
+1.8k Golang : Detect number of active displays and the display's resolution
+1.8k Javascript : How to show different content with noscript?
+7.6k Golang : Find file size(disk usage) with filepath.Walk
+22k Golang : Validate email address with regular expression
+12.3k Golang : untar or extract tar ball archive example
+3.4k Golang : Grayscale Image
+2.4k Python : Delay with time.sleep() function example
+3.9k Javascript : How to check a browser's Do Not Track status?