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

24 lines
247 B
Go

package main
import (
"fmt"
)
func lineOne() {
fmt.Println("lineOne function")
}
func lineTwo() {
fmt.Println("lineTwo function")
}
func lineThree() {
fmt.Println("lineThree function")
}
func main() {
lineOne()
lineTwo()
lineThree()
}