Sign in
go
/
vscode-go
/
ec040a9b09406ddfbc0493f00a0ef9f6716f46aa
/
.
/
test
/
testdata
/
baseTest
/
test.go
blob: c41f4ea0ae6f96f8e72b110dab7230dbbff21f89 [
file
] [
log
] [
blame
]
package main
import (
"fmt"
)
func print(txt string) {
fmt.Println(txt)
}
func main() {
print("Hello")
}