From 8e62b45c4a5f510264ee56f8de87d66bb88a83f2 Mon Sep 17 00:00:00 2001 From: David Schmenk Date: Wed, 6 Jan 2016 12:49:25 -0800 Subject: [PATCH] Move inc/dec below statements --- doc/User Manual.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/doc/User Manual.md b/doc/User Manual.md index 17b6db4..05af865 100644 --- a/doc/User Manual.md +++ b/doc/User Manual.md @@ -497,18 +497,6 @@ Address operators can work on any value, i.e. anything can be an address. Parent | || | logical OR (alt) | && | logical AND (alt) -#### Increment and Decrement -PLASMA has an increment and decrement statement. This is different than the increment and decrement operations in languages like C and Java. Instead, they cannot be part of an expression and only exist as a statement in postfix: - -``` -byte i - -i = 0 -while i < 100 - i++ -loop -``` - ### 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. @@ -527,6 +515,18 @@ keypress = ^$C000 // read keyboard ^$C010 // read keyboard strobe, throw away value ``` +#### Increment and Decrement +PLASMA has an increment and decrement statement. This is different than the increment and decrement operations in languages like C and Java. Instead, they cannot be part of an expression and only exist as a statement in postfix: + +``` +byte i + +i = 0 +while i < 100 + i++ +loop +``` + #### Control Flow PLASMA implements most of the control flow that most higher level languages provide. It may do it in a slightly different way, though. One thing you won't find in PLASMA is GOTO - there are other ways around it.