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

class Time::Zone;

has Str $.tz;

sub tz(Str $tz) returns Time::Zone is export {
    Time::Zone.new(:tz($tz));
}