Sign in
go
/
vscode-go
/
ea9ff8796aec7bf1c1f286d347b6328d55928fe9
/
.
/
extension
/
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
}