DEBSOURCES
Skip Quicknav
sources / delve / 1.24.0-4 / _fixtures / plugin1 / plugin1.go
12345678910111213
package main import "fmt" func Fn1() string { return "hello" } func HelloFn(n int) string { n++ s := fmt.Sprintf("hello%d", n) return s }