A way of adding padding with spaces. From https://golang.org/pkg/fmt/: "-" pad with spaces on the right rather than the left (left-justify the field)
fmt.Fprintf(W, "%-30s | MP | W | D | L | P", "Team")
The above pads with spaces (denoted by the s
char) on the left with quantity of 30.