Provided by: nama_1.216-2_all 

NAME
Audio::Nama::Object - Class builder
SYNOPSIS
# Define a class package Foo; use Audio::Nama::Object qw{ bux baz }; 1; # Use the class my $object = Foo->new( bux => 1 ); $object->set( bux => 2); print "bux is " . $object->bux . "\n"; # Define a subclass (automatically inherits parent attributes) package Bar; our @ISA = 'Foo'; my $lonely_bar = Bar->new(); $lonely_bar->set(bux => 3); perl v5.36.0 2022-10-16 Audio::Nama::Object(3pm)