update readme

This commit is contained in:
Yuichi Nishiwaki 2014-03-31 20:52:21 +09:00
parent 3e8d64fdb7
commit 84854cf029
1 changed files with 14 additions and 0 deletions

View File

@ -47,6 +47,20 @@ Picrin is a lightweight scheme implementation intended to comply with full R7RS
Explicit renaming macro family.
- `(picrin regexp)`
- `(regexp? obj)`
- `(regexp ptrn [flags])`
Compiles pattern string into a regexp object. A string `flags` may contain any of #\g, #\i, #\m.
- `(regexp-match re input)`
Returns two values: a list of match strings, and a list of match indeces.
- `(regexp-replace re input txt)`
- `(regexp-split re input)`
- `(picrin user)`
When you start the REPL, you are dropped in here.