Parse program arguments as passed from the command line
#!/usr/bin/env raku
use v6;
##| open file, whatever
sub MAIN (Str :$output!, Bool :$debug = False ) { # False can be ommitted
warn "debugging" if $debug;
dd $output;
}
# vim: expandtab shiftwidth=4 ft=perl6