In this chapter, you will learn all about variables. A variable is a named place in the computer’s memory where a program can store something. It can be anything you want. In fact, you can have as many variables in your program as you need.
This chapter will start with some simple examples, but eventually you will see that variables are absolutely fundamental to programming.
Storing Text
The first task will introduce you to variables. You will learn how to perform some basic operations with them.
Task
You’ll ...