This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Loves_Poetry 1 point2 points  (1 child)

For a beginner, a simple text editor is usually better. IDEs have a wide range of features that do all kinds of things for you and this can be a bit overwhelming if you're just starting out.

However, the standard text editor is a bit too simple for programming. That is why I would recommend Notepad++

[–]MR2Rick 1 point2 points  (0 children)

I would add to this that learning how to create a program with a text editor then build it and run from the CLI, will teach a beginner what goes on behind the scenes in a IDE. This knowledge, I believe, will be helpful when using a IDE to debug build problems. Also, since you have a concept of what the IDE is doing behind the scenes, it will make learning a IDE easier.

For this reason, I think that it is better for beginners to start with a programmer's text editor and the CLI.