Category:BlooP: Difference between revisions

Content added Content deleted
(Added basic info. Still to do: add more details and example code.)
mNo edit summary
Line 7: Line 7:


The operators that exist in BlooP and FlooP are:
The operators that exist in BlooP and FlooP are:
<= : Assignment
*<= : Assignment
+ : Addition
*+ : Addition
* or x (depending on implementation): Multiplication
** or x (depending on implementation): Multiplication
> : Greater Than
*> : Greater Than
< : Less Than
*< : Less Than
= : Equals
*= : Equals


Note that subtraction and division are conspicuously missing, as are modulus and exponentiation. These can and must be defined in terms of loops and the provided operators.
Note that subtraction and division are conspicuously missing, as are modulus and exponentiation. These can and must be defined in terms of loops and the provided operators.