diff options
Diffstat (limited to 're.scm')
-rw-r--r-- | re.scm | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -0,0 +1,7 @@ +#!r6rs +(library (re (0)) + (export match) + (import (rnrs base (6)) + (ice-9 regex)) + (define (match s pat) + (string-match pat s))) |