References Now the other thing that can be stored in a scalar. $ref = \$foo; The backslash gets a reference to the scalar $foo, which we then assign to $ref. If you want to get the value of $foo, just use the sigil to "dereference" it: $ref; # $foo $$ref # 4 Yeah, baby! Here we go!