From ef7b603b3bee3e56478a33aa8519e995e869e492 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Sat, 14 Sep 2024 19:06:22 +0900 Subject: Initial commit --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md (limited to 'README.md') 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) → ` + +Returns converted scheme expression if `expr` is a valid infix formula expression; otherwise, it returns`#f`. + +#### `(scheme->infix expr) → ` + +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 -- cgit v1.2.3