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.
- Host: GitHub
- URL: https://github.com/scriptprivate/inheritance
- Owner: scriptprivate
- Created: 2024-02-26T17:54:28.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-26T18:24:18.000Z (over 2 years ago)
- Last Synced: 2024-12-22T13:13:35.697Z (over 1 year ago)
- Topics: classes, demonstration, inheritance, packages
- Language: Perl
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.
---