Help for this page
use v6; ... when any(<http apache>) { authenticate :web; dostuff } default { authenticate :local; dostuff } }
use v6; dir '/some/directory', test => /\.txt$/; # a regex dir '/some/directory', test => none('.', '..'); # a junctionČ dir '/some/directory', test => &validate_filename; # a coderef