| Programming C# C++ (7) Delphi (618) Java (8) JavaScript (30) perl (9) mysql (3) perl CGI (3) php (4) VBScript (1) Visual Basic (1) |
Introduction to classes and objects in perl
Question: Can you give me an introduction to classes and objects in perl?Answer: perl doesn't really have any special syntax to specify class structures or represent data. Basically you are going to write your class as an anonymous hash.Here is a good introduction to this concept in perl: Comments:
|