mirror of
https://github.com/Threnklyn/advent-of-code-go.git
synced 2026-06-07 12:45:10 +02:00
Added go.mod file. Added util folder for shared code
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
/*
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user