I am a beginning learner.there is a simple question about go,the program 
is in the following:
package main

import (
 "bufio"
 "fmt"
 "os"
)
func main() {
 
 counts := make(map[string]int)
 input := bufio.NewScanner(os.Stdin)
 for input.Scan() {
  counts[input.Text()]++
 }
 for line, n := range counts {
  if n > 1 {
   fmt.Println("%d\t%s\n", n, line)
  }
 }
}

the question is how I input the number and get the output result??

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to