February 2018
Intermediate to advanced
340 pages
9h 43m
English
package main import ( "fmt" "os" "text/tabwriter" ) func main() { w := tabwriter.NewWriter(os.Stdout, 15, 0, 1, ' ', tabwriter.AlignRight) fmt.Fprintln(w, "username\tfirstname\tlastname\t") fmt.Fprintln(w, "sohlich\tRadomir\tSohlich\t") fmt.Fprintln(w, "novak\tJohn\tSmith\t") w.Flush() }

Read now
Unlock full access