ref: c5ba0314c88614cb7c7177a95917316d55dc80f4 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") }