- or download this
$ perl -Mstrict -Mwarnings -le '
package Parent;
...
'
Parent object char = parent
Son object char = son
- or download this
$ perl -Mstrict -Mwarnings -le '
package Parent;
...
'
$parent_obj class = Parent
$son_obj class = Son
- or download this
$ perl -Mstrict -Mwarnings -le '
package Parent;
...
$son_obj class = Son
$daughter_obj class = Daughter
$grandson_obj class = Grandson