Hi!
My name is Ember. I'm a developer, coming from Python, Java, HTML/CSS, etc. Mostly languages where you can make classes and thus construct objects, ie. easily exercise an object oriented approach. I was also trained somewhat extensively in that approach.
So, when I begin a project, I often begin by thinking of "parts" to create related objects. In essence, if I want to model a physical, analog clock, I start by making gears... depending on the degree of detail.
With Go, I'm building a bot, because why not, but then I ran into the fact that you can't make classes in Go! o.o
So, I could program this like I used to program, before I ever took a class, and just... put it all on one page, whatever "it" is (I do have something working).
But! I'd much rather go about this in the most orderly way possible! In Python, I'd have another file. What do I do in Go?
