@jaredbusch said in IS BASIC programming still in vogue?:
@scottalanmiller said in IS BASIC programming still in vogue?:
That's exactly why I prefer the more modern VSC and why Atom and Sublime are seen as more "serious" than VS most of the time - full time developers tend to prefer lighter, more flexible coding environments than the big, monolithic, bloated systems like VS or Eclipse. That VS is so focused on one single run time makes it that much worse, very few full time devs can or want to work on a single runtime all the time. Coding is just much more broad than that.
Scripts and structured languages like HTML, yes. I am in VSC all the time myself.
But compiled code requires a development environment that you can do things like debugging in.
^ this
You just don't want to have a simple editor with a little "project management" when you have tens of thousands of codelines in hundreds of files.
That is not bloat. I need to be able to step the the executing application line by line at times to find that weird bug.
For Windows, this is VS. I have no idea what it would be for the Linux ecosystem more than make
to compile.
There are many toolchains available, most of them wrap around make, gcc and your editor and debugger of choice. Eclipse, because it's cross platform, is a popular IDE here. Besides of being cross platform, it's something I try to avoid.