The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#
# (c) Nathan Abu <aloha2004@gmail.com>
#
use v5.12.5;
our $VERSION = '1.16.0'; # VERSION
sub write { die "Must be implemented by inheriting class" }
sub add { die "Must be implemented by inheriting class" }
sub error { die "Must be implemented by inheriting class" }
1;