aboutsummaryrefslogtreecommitdiff
path: root/test.icl
diff options
context:
space:
mode:
Diffstat (limited to 'test.icl')
-rw-r--r--test.icl10
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+"
+