Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/testfnpos2.go
T
2024-09-19 21:38:24 -04:00

17 lines
126 B
Go

package main
import "fmt"
func f2() {
fmt.Printf("f2\n")
}
func f1() {
fmt.Printf("f1\n")
}
func main() {
f1()
f2()
}