Hacker News new | ask | show | jobs
by _ph_ 2540 days ago
I have made very good experiences with the GTK bindings for go (https://github.com/gotk3/gotk3). As the GTK Api is C-Based, it fits conceptually very good to Go. Actually I consider the Go bindings even better than using GTK from C, as the thin object model GTK uses, translates well to Go structures, most functions become methods on those structures. And the Go garbage collector solves the memory handling of the GTK structures.
1 comments

I mostly have too, but GTK itself is a bummer. Doing most any interesting thing is a ton of work.