Sign in
go
/
vscode-go
/
d6fb20289a8484e57dc4fa21a2f44094de7f1a5b
/
.
/
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")
}