Perl

  1. Home
  2. Computing & Technology
  3. Perl

Strongly Typed

From About.com

Definition: A strongly typed programming languages is one that requires the type of a variable to be explicitly stated. C is a strongly typed language. You must declare the type of data a variable will store for C to interpret it:
int myVariable;
myVariable = 25;
Perl is a loosely typed language. There is no need to declare the variable type before using it:
$myVariable = 25;
$myVariable = "A String.";

Explore Perl

About.com Special Features

Build Your Own Website

Step-by-step advice on how to do everything from choosing a Web host to promoting your content. More >

Connect Your Home Computers

Easy ways to connect two computers for networking purposes. More >

Perl

  1. Home
  2. Computing & Technology
  3. Perl
  4. Getting Started
  5. Programming Glossary
  6. Strongly Typed

©2009 About.com, a part of The New York Times Company.

All rights reserved.