My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/infra/nom/clap/test.raku

11 lines
250 B

use lib 'lib/Clap';
use Clap;
my $app = App.new()
.about("This is some about text")
.author("Katharina Fey <kookie@spacekookie.de>")
.subcommand(Subcommand
.with_name("build")
.about("Do some thing"));
say $app;