in reply to Re^2: Would someone mind helping me understand this Perl OO code?
in thread Would someone mind helping me understand this Perl OO code?

Oops, ignore my earlier post.
Node->new($ip, $mac_address, $machine);
is basically the same as
Node::new('Node', $ip, $mac_address, $machine);
The main difference is that it checks the parent classes for new if sub Node::new doesn't exist.