Untitled
use v6;
use lib './';
use CLIInteractive;
use CommandSnark;
my CLI::Interactive $cli .= new;
$cli.register-command-instance(Alfred::Command::Snark.new);
sub MAIN(|argument-string) {
if argument-string.Str eq '' {
}
else {
$cli.dispatch('snark test');
}
say 'hello';
}INFO