diff options
author | Masaya Tojo <masaya@tojo.tokyo> | 2024-09-14 19:06:22 +0900 |
---|---|---|
committer | Masaya Tojo <masaya@tojo.tokyo> | 2024-09-14 19:22:27 +0900 |
commit | ef7b603b3bee3e56478a33aa8519e995e869e492 (patch) | |
tree | c7a4f33a989d98856a1add32e4c8f2bac650cc32 /README.md |
Initial commit
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..54b9000 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# Infix-to-Scheme + +Infix-to-Scheme is an R7RS library for converting infix formula to Scheme expression. + +## Usage + +### Import `(infix-to-scheme)` library + +```scheme +(import (infix-to-scheme)) +``` + +#### `(infix->scheme expr) → <sexpr>` + +Returns converted scheme expression if `expr` is a valid infix formula expression; otherwise, it returns`#f`. + +#### `(scheme->infix expr) → <sexpr>` + +Returns converted infix formula expression if `expr` is a valid scheme expression; otherwise, it returns`#f`. + +## Downloading code with git + +Use git command. + +```shell +git clone https://git.tojo.tokyo/infix-to-scheme.git +``` + +## License + +This library is released under the GPLv3+ License. +See the COPYING file for more details. + +## Copyright + +Copyright (c) 2024 Masaya Tojo <masaya@tojo.tokyo> |