Запись в файл
package main
import (
"io/ioutil"
)
func check(e error) {
if e != nil {
panic(e)
}
}
func main() {
// Запись строки (или байтов) в файл
d1 := []byte("does<b>this</b>work")
err := ioutil.WriteFile("/root/go/src/webapp/1.html", d1, 0644)
check(err)
}