Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cptaffe committed Oct 26, 2014
1 parent fcffa9b commit e5fb53a
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@ infix
Simple interpreter for infix syntax.

Uses a concurrent lexer/parser to create a binary tree from infix statements and then evaluate them recursively.

```sh
$ clang++ -g main.cc -std=c++11
$ ./a.out
8 * 8
prefix: * 8 8
postfix: 8 8 *
infix: (8 * 8)
=> 64
```

0 comments on commit e5fb53a

Please sign in to comment.