The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Enbld::Command::Version;

use strict;
use warnings;

use 5.010001;

use parent qw/Enbld::Command/;

require Enbld;

sub do {
    say "enbld (Enbld) $Enbld::VERSION";
}

1;