up previous next
1.2.1 Character Set and Special Symbols
The CoCoA character set consists of the 26 lower case letters, the 26 upper case letters, the 10 digits and the special characters listed in the table below. Note that the special character | looks a bit different on some keyboards (its ASCII code is 124).
    ------------------------------------------------------
   |    blank     _  underscore     (  left parenthesis   |
   | +  plus      =  equal          )  right parenthesis  |
   | -  minus     <  less than      [  left bracket       |
   | *  asterisk  <  greater than   [  right bracket      |
   | /  slash     |  vertical bar   '  single quote       |
   | :  colon     .  period         "  "  double quote    |
   | ^  caret     ;  semicolon                            |
   | ,  comma     %  percent                              |
    ------------------------------------------------------
                  Special Characters
The character-groups listed in the table below are special symbols in CoCoA
    -------------------------------------------------------------
   | :=   assign                      ..   range                 |
   | <<   input from                  //   start line comment    |
   | <>   not equal                   --   start line comment    |
   | ><   Cartesian product           ::=  ring definition       |
   | <=   less than or equal to       /*   start embedded comment|
   | >=   greater than or equal to    */   end embedded comment  |
    -------------------------------------------------------------
                     Special Character-groups