An open API service indexing awesome lists of open source software.

https://github.com/scriptprivate/inheritance

Simple demonstration of Perl modules and classes inheritance.
https://github.com/scriptprivate/inheritance

classes demonstration inheritance packages

Last synced: 11 months ago
JSON representation

Simple demonstration of Perl modules and classes inheritance.

Awesome Lists containing this project

README

          

┌────────┐ ┌────────┐ ┌──────────┐
│ Person |-->| SDSU │-->│ Student │
└────────┘ └────────┘ └──────────┘
| | |
| | |
┌──────┐ ┌──────┐ ┌──────┐
│ name | │ id │ │ gpa │
└──────┘ └──────┘ └──────┘

---

This repository is a simple demonstration of Perl modules and classes inheritance based on Dr. Rob Edward's class on the subject of Perl's Subroutines and Modules for San Diego State University.

---