Built-in code editor and a little more
Well, very rarely I go to this site out of boredom and watch different lessons for fun. Now I'm reviewing a course on Java and I have a question about some of the lessons (I didn't shoot all the lessons, of course). I noticed that the code in the built-in editor, when there are two of them on the page, is the same. For example, in the lessons about increment&decrement and logical statements. The code in first block looks like this: ```public class Program { public static void main(String[] args) { int x = 34; int y = ++x; System.out.println(y); } }``` And in the second block of code it's the same, but ```int y = ++x``` should be ```int y = x++```. ~~~ A year ago, when I came here, I noticed the life system and it made me a little angry. What happened to the site during this time? This system introduced a rather unpleasant limitation on learning than was previously the case. I myself started with this platform and gradually began to understand how it all works. But over time, I realized that such lessons are frankly useless and are information hogwash. One of the advantages that I can highlight is that such “free” lessons are a good kick-start for beginners into the world of computer science. And then you can either use books, forums or video tutorials, which is what I subsequently did. That's all I wanted to say. As I wrote, I'm here for a little fun.