mirror of
https://github.com/SourceFellows/gobuch.git
synced 2025-08-05 14:12:16 +02:00
initial import
This commit is contained in:
3
somelib/v2/go.mod
Normal file
3
somelib/v2/go.mod
Normal file
@ -0,0 +1,3 @@
|
||||
module github.com/SourceFellows/somelib/v2
|
||||
|
||||
go 1.14
|
9
somelib/v2/somelib.go
Normal file
9
somelib/v2/somelib.go
Normal file
@ -0,0 +1,9 @@
|
||||
// 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")
|
||||
}
|
Reference in New Issue
Block a user