Changes between Version 1 and Version 2 of NotationExplaination
- Timestamp:
- 2017-09-11 13:40:52 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NotationExplaination
v1 v2 9 9 {{{ 10 10 SINGLETON system 11 int aSolitaryInteger := 3// static integer12 ubyte$ aSolitaryString := "system name"// static string13 classUnderScrutiny{} setOfObjectsUnderScrutiny// set/list of object instances of classUnderScrutiny11 int aSolitaryInteger := 3 // static integer 12 ubyte$ aSolitaryString := "system name" // static string 13 classUnderScrutiny{} setOfObjectsUnderScrutiny // set/list of object instances of classUnderScrutiny 14 14 }}} 15 15 … … 17 17 18 18 {{{ 19 OBJECT classUnderScrutiny ( ubyte$ nameOfInstance ) 20 int sizeOfName = nameOfInstance->length// two fields, one is a part of the constructor19 OBJECT classUnderScrutiny ( ubyte$ nameOfInstance ) // implies a single parameter constructor 20 int sizeOfName = nameOfInstance->length // two fields, one is a part of the constructor 21 21 }}}