| Perl Programming | ||
|---|---|---|
| Scalars | ||
use strict;
my $apple_variety; # Value undefined
$apple_variety = "Red Delicious"; # Defined
$apple_vareity = "Granny Smith"; # Error
my $apple_color = "red"; # Declare and define
|
||
| Previous | http://stuff.mit.edu/iap/perl/ | Next |