gobuch/somelib/v2/somelib.go
2020-08-21 06:26:40 +02:00

10 lines
215 B
Go

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