Home > calc.rb

calc.rb

Calc.rb is a project mainly written in Ruby, it's free.

A simple expression calculator (using a recursive descent parser & Ruby)

Why?

To learn Ruby...

How it works?

It uses a dead simple lexer (just use the scan method of strings).

The parser is a recursive descent one, it doesn't build an AST, it evaluate the expression on the fly.

Previous:first_rails