package main

import (
    "fmt"
    "math"
)

func main() {
    // names are exported (i.e. publicly accessible) if
    // their names begin with a captial letter, e.g. "Pi"
    fmt.Println(math.Pi)
}

Embed on website

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