package main

import "fmt"

func main() {
    // inside a function, if a new variable is being
    // *declared* (excludes variable assignments/reuse)
    // you can use ":=" instead of "var ... = ..."

    var i, j int = 1, 2
    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: