1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-02-03 07:34:11 +00:00

Update User Manual.md

This commit is contained in:
David Schmenk 2014-11-06 11:37:20 -08:00
parent 48cb5c0537
commit 1649610d11

View File

@ -395,12 +395,15 @@ Address operators can work on any value, i.e. anything can be an address. Parent
| | | bitwise OR | | | bitwise OR
| == | equals | == | equals
| <> | not equal | <> | not equal
| != | not equal (alt)
| >= | greater than or equal | >= | greater than or equal
| > | greater than | > | greater than
| <= | less than or equal | <= | less than or equal
| < | less than | < | less than
| OR | logical OR | OR | logical OR
| AND | logical AND | AND | logical AND
| &#124;&#124; | logical OR (alt)
| && | logical AND (alt)
### Statements ### Statements
PLASMA definitions are a list of statements the carry out the algorithm. Statements are generally assignment or control flow in nature. Generally there is one statement per line. The ';' symbol seperates multiple statements on a single line. It is considered bad form to have multiple statements per line unless they are very short. PLASMA definitions are a list of statements the carry out the algorithm. Statements are generally assignment or control flow in nature. Generally there is one statement per line. The ';' symbol seperates multiple statements on a single line. It is considered bad form to have multiple statements per line unless they are very short.