summaryrefslogtreecommitdiff
path: root/tests/full/nibble/regex.nb
blob: 4aa98a734e3ae4474a8dfd53778c84610e0d7cbd (plain)
1
2
3
4
5
let opt x = _ | x;
let plus x = !(/plus/ x . opt plus);
let star x = !(/star/ opt (x . star));

match plus "a" . star "b";