An open API service indexing awesome lists of open source software.

https://github.com/simonewebdesign/expression-parser

A command-line Ruby algebraic equation tokenizer / solver.
https://github.com/simonewebdesign/expression-parser

Last synced: over 1 year ago
JSON representation

A command-line Ruby algebraic equation tokenizer / solver.

Awesome Lists containing this project

README

          

# Ruby Expression Parser

This program calculates the value of an expression
consisting of numbers, arithmetic operators, and parentheses.

## Give it a try

```
$ ruby main.rb
Enter an expression: 2 + 2
=> 4
```