I´m writing my first programs in Perl, and wrote this:
use strict; use warnings; $animal = \"camel\"; print($animal);
When I run it, I get
You have to put:
my $animal = "camel"
when using use strict.
use strict