// Package somelib shows how to build a simple golang library. package somelib import "fmt" // CallLib simple writes a string to the console. func CallLib() { fmt.Println("Here is somelib - version 1.0.0") }