28 lines
567 B
Go
28 lines
567 B
Go
// For more tutorials: https://blog.learngoprogramming.com
|
|
//
|
|
// Copyright © 2018 Inanc Gumus
|
|
// Learn Go Programming Course
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
)
|
|
|
|
// summarize the parsing results
|
|
func summarize(p *parser) {
|
|
sort.Strings(p.domains)
|
|
|
|
fmt.Printf("%-30s %10s\n", "DOMAIN", "VISITS")
|
|
fmt.Println(strings.Repeat("-", 45))
|
|
|
|
for _, domain := range p.domains {
|
|
fmt.Printf("%-30s %10d\n", domain, p.sum[domain].visits)
|
|
}
|
|
fmt.Printf("\n%-30s %10d\n", "TOTAL", p.total)
|
|
}
|