ref: 8a46d62744d2969ba9c3488672027509f00fdb4b
dir: /main.myr/
use regex use std const main = { var found match regex.compile(".*^a*") `std.Success re: found = regex.exec(re, "b\naaa") std.put("Found = %t: len = %z\n", found, re.strp) -> 0 ;; `std.Failure err: std.put("failed to compile regex") -> 1 ;; ;; }