What does a 'scalar' do?
Stores an integer:
my $x = 5;
Stores a floating point number:
my $x = 3.1415926;
Stores a string:
my $x = 'Linonophobia';
Stores a reference:
my $x = { height => 7, width => 22 };