blob: 30aff3bdee4b00cf8cd565bec1ce481b7c3f61b1 [file] [log] [blame]
// The rautelap tool prints a quote from a famous bending unit.
package main
import (
"bufio"
"io"
"os"
)
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()
}