package main

import "fmt"

// Variable names followed by type and then the
// list of values
var i, j int = 1, 2

func main() {
    // if type is omitted, will assume the type from
    // the initializer
    var c, python, java = true, false, "no!"
    fmt.Println(i, j, 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: