gitlab.com/Raven-IO/raven-delve@v1.22.4/_fixtures/testtoggle.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  func lineOne() {
     8  	fmt.Println("lineOne function")
     9  }
    10  
    11  func lineTwo() {
    12  	fmt.Println("lineTwo function")
    13  }
    14  
    15  func lineThree() {
    16  	fmt.Println("lineThree function")
    17  }
    18  
    19  func main() {
    20  	lineOne()
    21  	lineTwo()
    22  	lineThree()
    23  }