00:01
All right, continuing our cs journey here, digging deeper into variables and how they work.
00:09
Looking a little bit up with that assignment, what happens when we double assign a value? so, you know, in the previous example, i talked about, you know, we set the variable x to have a value of 17.
00:21
So we've gone to the memory location associated with the variable x.
00:25
We've written and stored the value 17 there so that the variable x now points to the number 17.
00:31
So if we do a display x, it's going to display 17.
00:35
But then if i do another set also on the variable x, and i set it to 25, well, what happens is the set statement or the assignment statement, remember, the computer's very literal...