summaryrefslogtreecommitdiff
path: root/re.scm
diff options
context:
space:
mode:
Diffstat (limited to 're.scm')
-rw-r--r--re.scm11
1 files changed, 0 insertions, 11 deletions
diff --git a/re.scm b/re.scm
deleted file mode 100644
index f6f4b75..0000000
--- a/re.scm
+++ /dev/null
@@ -1,11 +0,0 @@
-#!r6rs
-(library (re (0))
- (export match group)
- (import (rnrs base (6))
- (ice-9 regex))
- (define (match s pat)
- (string-match pat s))
- (define (group m n)
- (if m
- (match:substring m n)
- #f)))