diff options
author | Camil Staps | 2016-03-21 19:31:24 +0100 |
---|---|---|
committer | Camil Staps | 2016-03-21 19:42:59 +0100 |
commit | 58ea61a19cb9bd0f6c600ebbb643e209fdf9d7cb (patch) | |
tree | 864264245f5f1ec8d8af0162830afd9bb5a63473 /test.icl | |
parent | Initial commit (diff) |
Matching works
Diffstat (limited to 'test.icl')
-rw-r--r-- | test.icl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test.icl b/test.icl new file mode 100644 index 0000000..5346aca --- /dev/null +++ b/test.icl @@ -0,0 +1,10 @@ +module test + +import StdEnv +import Regex +import StdMaybe + +Start = (match rgx "123a123", toString rgx) +where + (Just rgx) = toRegex Regex_CASELESS "[a-z]\\d+" + |