The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package View::Main;
use strict;
use warnings;

sub new {
    my ($class, $s)  = @_;
    my $self         = {};
    bless $self, $class;
    $self->{base}   = $s;
    return $self;
}

1;