One of the first things that you learn when you start to program is learning how to declare a variable and assign to it a value.
For example, you are told to assign a string and then print it in a console:
Now, if we want to assign another variable in there, our intuition can be to just add a new line, and assign it there:
Continue reading