aboutsummaryrefslogtreecommitdiff
path: root/test.icl
blob: a89ffe4ca7b2e606a9059443258a00babccb3008 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module test

import StdEnv
import Regex
import Data.Maybe

Start = map (match rgx) ["hello", "abc"]
where
    (Just rgx) = toRegex 0 "^a[[:alnum:]]"