The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;

package 
    Data::Tabular::Type::Formula;

use base 'Data::Tabular::Type';

sub data
{
    my $self = shift;

    $self->{data};
}

1;