# Infix-to-Prefix Infix-to-Prefix is an R7RS library for converting infix formula to Prefix expression. ## Usage ### Import `(infix-to-prefix)` library ```prefix (import (infix-to-prefix)) ``` #### `(infix->prefix expr) → ` Returns converted prefix expression if `expr` is a valid infix formula expression; otherwise, it returns`#f`. #### `(prefix->infix expr) → ` Returns converted infix formula expression if `expr` is a valid prefix expression; otherwise, it returns`#f`. ## Downloading code with git Use git command. ```shell git clone https://git.tojo.tokyo/infix-to-prefix.git ``` ## License This library is released under the GPLv3+ License. See the COPYING file for more details. ## Copyright Copyright (c) 2024 Masaya Tojo