Update README.md

This commit is contained in:
David Schmenk 2014-04-29 20:21:10 -07:00
parent ed0eafadf4
commit bb6b641fc2

View File

@ -198,7 +198,7 @@ More complex expressions can be built up using algebraic unary and binary operat
| * | word pointer | * | word pointer
| @ | address of | @ | address of
| - | negate | - | negate
| # | bitwise compliment | ~ | bitwise compliment
| ! | logical NOT | ! | logical NOT
@ -244,7 +244,7 @@ Control structures affect the flow of control through the program. There are co
key = $CE ; N key = $CE ; N
fin fin
else else
key = key ? $E0 key = key | $E0
fin fin
``` ```