Sign in
go
/
website
/
fc3ac592e3b71d78c1a37e4d0a60c449b5b6e110
/
.
/
_content
/
doc
/
play
/
multi.txt
blob: ad41446f27338209f34a4d71a9174744fbfc83bd [
file
] [
log
] [
blame
]
package main
import (
"play.ground/foo"
)
func main() {
foo.Bar()
}
-- go.mod --
module play.ground
-- foo/foo.go --
package foo
import "fmt"
func Bar() {
fmt.Println("This function lives in an another file!")
}