Changes between Version 26 and Version 27 of ExpressionSyntax


Ignore:
Timestamp:
2017-09-14 11:28:34 (8 years ago)
Author:
archibald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExpressionSyntax

    v26 v27  
    7575}}} 
    7676 
    77 This assumes that each data element ( variable/attribute ) has a number of descriptive values 
     77This assumes that each data element ( variable/attribute ) has a number of descriptive values that can be compared ( to determine applicability ) to an operation. 
    7878* identifier   // the name 
    7979* type         // the type it represents 
     
    8181* mutability   // whether the value can be modified or not 
    8282 
     83eg ... fred has been declared as a part of the "fruitbat" namespace, it's an integer it's a solitary integer and is immutable with the value 3 thus : 
     84* variable (fruitbat:fred:int:single:imm:3) 
     85 
     86so the "++" postfix operator will not be able to operate on it as it's immutable. 
     87 
     88 
    8389== (7.1) [wiki:WhatAboutIdentifiers What about identifiers (Expression Syntax) ?] ==