You are on page 1of 1

For Lab 7, Exercise 7.

2: Perl

my $platform;

$platform = ($entity->GetFieldValue("platform"))->GetValue();
if ($platform eq "Windows 2000") {
push(@choices, "Professional", "Professional SP1", "Server", "Server SP1");
} else {
if ($platform eq "Windows NT Server") {
push(@choices, "4.0 SP4", "4.0 SP6A");
} else {
if ($platform eq "Windows 98") {
push(@choices, "Win98");
} else {
push(@choices, " ");
}
}
}

You might also like