CodingStandards

Coding standards


General


Forth code

In order to provide some consistency the following standard will be used:

Example:

 : +*	( a b c -- a+b*c)
    *	( a b*c )
    +	( a+b*c )
    ;
    

Links: HomePage