Untitled
#!/usr/bin/env perl6
use v6;
grammar TcronGrammar {
token TOP { ^^ <recursive>? <path> <rgx>? }
token recursive { '*' }
token path { \N+ }
token rgx { \N+ }
};
say TcronGrammar.parse('* /tmp/electron regex');INFO