ref: 4b9cb1eb53a95b6572ee642e8bdee4a5f30a27d9 dir: /test/regex-capture.myr/
use "testmatch.use" const main = { testmatch("A(.*)", "Abc") testmatch("A(.*)e", "Abcde") testmatch("A(b(.*)d)e", "Abcde") testmatch("(a?)(a*)(a?)", "aaaa") }