# Named character class or subrule

    # Leading alphabetic character after leading <

    say "Matched space" if " " ~~ m/ <space> /;

    # A leading . after the initial < calls a method as a
    # non-capturing subrule.

    if 'identifier ' ~~ m/ <.ident> <.ws> / {
    	say "Matched '$/'";
    }