New Issue: Which method to use for compiling regular expressions in Chapel

17187, "leekillough", "Which method to use for compiling regular expressions in Chapel", "2021-02-18T21:14:58Z"

  1. Free procedure in module Regexp (current method)
    use Regexp;
    var re = compile("/a/");

  2. init method on regexp
    use Regexp;
    var re = new regexp("/a/")

  3. type method on regexp
    use Regexp;
    var re = regexp.compile("/a/");