Skip to content

Instantly share code, notes, and snippets.

@sahajre
Created August 29, 2019 05:21
Show Gist options
  • Save sahajre/27779c60ff1bff753fd755c5bb794d22 to your computer and use it in GitHub Desktop.
Save sahajre/27779c60ff1bff753fd755c5bb794d22 to your computer and use it in GitHub Desktop.
package main
import (
"bufio"
"fmt"
"log"
"strings"
)
const input = `Hello
, 世界
`
func main() {
s := bufio.NewScanner(strings.NewReader(input))
for s.Scan() {
fmt.Print(s.Text())
}
fmt.Println()
if err := s.Err(); err != nil {
log.Fatal(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment