Changes between Version 1 and Version 2 of NotationExplaination


Ignore:
Timestamp:
2017-09-11 13:40:52 (8 years ago)
Author:
archibald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NotationExplaination

    v1 v2  
    99{{{ 
    1010SINGLETON system 
    11     int aSolitaryInteger := 3                      // static integer 
    12     ubyte$ aSolitaryString := "system name"        // static string 
    13     classUnderScrutiny{} setOfObjectsUnderScrutiny // set/list of object instances of classUnderScrutiny 
     11  int aSolitaryInteger := 3                         // static integer 
     12  ubyte$ aSolitaryString := "system name"           // static string 
     13  classUnderScrutiny{} setOfObjectsUnderScrutiny    // set/list of object instances of classUnderScrutiny 
    1414}}} 
    1515 
     
    1717 
    1818{{{ 
    19 OBJECT classUnderScrutiny ( ubyte$ nameOfInstance ) 
    20     int sizeOfName = nameOfInstance->length        // two fields, one is a part of the constructor 
     19OBJECT classUnderScrutiny ( ubyte$ nameOfInstance ) // implies a single parameter constructor 
     20  int sizeOfName = nameOfInstance->length           // two fields, one is a part of the constructor 
    2121}}}