initial import

This commit is contained in:
SourceFellows
2020-08-21 06:26:40 +02:00
commit e223458dd4
423 changed files with 9871 additions and 0 deletions

3
somelib/v2/go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/SourceFellows/somelib/v2
go 1.14

9
somelib/v2/somelib.go Normal file
View 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")
}