Interpolation

#
# Interpolation
# -------------
#
  $foo = "moo";
#
  $temp =~ /$foo$/;

# is equivalent to 

  $temp =~ /moo$/;