in rautelap/main.go [10:28]
func main() {
file, err := os.Create("/tmp/hubertJfarnsworth")
if err != nil {
panic("Error opening file")
}
w := bufio.NewWriter(file)
io.WriteString(w, "Bite my shiny metal A**")
err = w.Flush()
if err != nil {
println("Check file, some data maybe missing")
}
file.Close()
}