mirror of
https://github.com/Threnklyn/advent-of-code-go.git
synced 2026-05-29 23:59:07 +02:00
13 lines
183 B
Go
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")
|
|
}
|