package gupta import ( "fmt" ) func Hello() string { return "Hello, world" } func main() { fmt.Println(Hello()) }