// declaring a list of variables with var
// if there is no explicit value given, initialized
// to a "zero value".

package main

import "fmt"

var c, python, java bool

func main() {
    var i int
    fmt.Println(i, c, python, java)
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: