#!/usr/bin/perl
$answer = 42;                # integer
$pi = 3.14159265;            # numeric
$avocados = 6.02e23;         # scientific notation
$pet = 'dog';                # string
$sign = "Beware of $pet\n";  # string with interpolation
$curdir = `pwd`;             # command
