Sign in
go
/
vscode-go
/
15a266b188be233fe6d6c76439c5beb87846fbf1
/
.
/
test
/
testdata
/
outlineTest
/
test.go
blob: 14bf181527715239b055c1cc115c2bf4378ff10d [
file
] [
log
] [
blame
]
package main
import (
"fmt"
)
var _ string = "foobar"
// const constFoo = "constBar"
func print(txt string) {
fmt.Println(txt)
}
func main() {
print("Hello")
}
type foo struct {
bar int
}
type circle interface {
radius float64
}