shithub: mc

ref: a2da7312d03152baea7311d4e0263f42fbc9a2e6
dir: /main.myr/

View raw version
use std

use regex

const main = {
	var re
	var found

	re = regex.compile("a+")
	found = regex.exec(re, "aaa")
	std.put("Found: len = %z\n", re.strp, found)
}