diff options
author | Ben Sima <ben@bsima.me> | 2020-05-09 22:18:17 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-05-09 22:18:17 -0700 |
commit | fd721e94532ba7f912d13706b3c03056345952e6 (patch) | |
tree | 7c273db16e0e8dc4de7f1702e50e2e368bbd18b5 /re.scm | |
parent | 1542c85458dcd58bb6d40f1f8d3917f80298ddd2 (diff) |
Index titles
Also don't overwrite srfi-1 stuff, and added an re module.
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))) |