Lesson 3
What programming language to study after Pascal
Schools teach programming in the Pascal programming language. But this language is not in demand in the labor market now, because earlier it was necessary to learn another language. So what kind of modern and popular programming language can you learn after learning the Pascal language.
Go
Go or Golang is a modern programming language created in 2009 by Google. Like Pascal, it is a compiled programming language that is suitable for the development of application programs and for the development of system software.
Python
Python has not been directly influenced by Pascal, but in syntax it is still more similar to Pascal than, for example, C++. He, like Pascal, was influenced by Algol 68. Now schools are switching from teaching Pascal to Python because it is also easy to learn.
The practical part of the work
Step 1. Now let’s add a ball to the game.
Add 2 Booleans responsible for the direction of the ball: dx,dy
2 variables of its coordinates, and radius: xb,yb,rb




Step 2. In order for the ball to interact with the players, we will make changes in the code again

Step 3. Add the score to the game. To do this, we will create two variable player points. The points of the left player will be on the left, and the points of the right player will be on the right.

Step 4. Glasses size and background: SetFontSize(50);
SetBrushColor(clRed);

Full game review

