github.com/undoio/delve@v1.9.0/_fixtures/plugin1/plugin1.go (about)

     1  package main
     2  
     3  import "fmt"
     4  
     5  func Fn1() string {
     6  	return "hello"
     7  }
     8  
     9  func HelloFn(n int) string {
    10  	n++
    11  	s := fmt.Sprintf("hello%d", n)
    12  	return s
    13  }