diff --git a/rautelap/main.go b/rautelap/main.go new file mode 100644 index 0000000..30aff3b --- /dev/null +++ b/rautelap/main.go @@ -0,0 +1,28 @@ +// 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() +}