Files
advent-of-code-go/util/Other.go
T

13 lines
183 B
Go

/*
just a test to see how building other parts of a package works
*/
package util
import "fmt"
// OtherFunc is a test :p
func OtherFunc() {
fmt.Println("hello from other func")
}