>>11995218The main problem with Java is that its so relient on Object Orientation to the point where unless you're really careful with what you're doing you're going to end up with spaghetti code. Half way into your project you realize you want to import files to handle data, so you write up a file parser that returns the object type which categorized things in the format you want, but then you realize that the files may contain data not supported by the type, so you make a buffer variable in the object class to hold onto that data aaand before you know it you have 50 different classes all tied together in a complex web of trying to pass along data from the parser to the main class so it can be handled and it's just a depressing mess and this could be done in 3 lines of python and oh god why did I choose to write this shit in Java and please God help me.