package main
import "fmt"
func main() {
var text string = "Hello Golang World!"
fmt.Println(text)
var vat int = 12
fmt.Println(vat)
}