Sign in
◑
Theme
go
/
vscode-go
/
28e27ffd3a0eca1de30b1a9656a75cbd47e94e4e
/
.
/
extension
/
test
/
testdata
/
baseTest
/
test.go
blob: c41f4ea0ae6f96f8e72b110dab7230dbbff21f89 [
file
]
package main
import (
"fmt"
)
func print(txt string) {
fmt.Println(txt)
}
func main() {
print("Hello")
}