Skip to content

Instantly share code, notes, and snippets.

View wang900115's full-sized avatar
🎯
Focusing

Perry wang900115

🎯
Focusing
View GitHub Profile
@wang900115
wang900115 / io.md
Last active October 9, 2025 15:53
Golang system programming part
type Reader interface {
  Read(p []byte) (n int, err error)
}
  • Concept: caller give me empty bowl (p), then i give into p.
  • Reader: "Produce data"
  • Read: "Pour my data into empty bowl"
type Writer interface{