Hacker News new | ask | show | jobs
by jtanza 1129 days ago
As someone who only has some minor experience with Go, can you maybe elaborate a bit on what you mean by the stdlib providing such interfaces? I don’t recall any such paradigm being called out when first learning the language and it sounds pretty interesting.
1 comments

https://github.com/mattn/go-sqlite3/blob/master/_example/sim...

notice that the SQLite package isn't used directly, its only imported to handle the database behind the scenes. all the actual code is written using only the standard library