mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-09-18 10:14:51 +02:00
10 lines
215 B
Go
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")
|
|
}
|