Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/cat.go
T
2024-09-19 21:38:24 -04:00

16 lines
171 B
Go

package main
import (
"bufio"
"fmt"
"os"
)
func main() {
s := bufio.NewScanner(os.Stdin)
for s.Scan() {
fmt.Printf("read %q\n", s.Text())
}
os.Stdout.Close()
}