Changes between Version 12 and Version 13 of ExpressionSyntax


Ignore:
Timestamp:
2017-09-14 10:22:09 (8 years ago)
Author:
archibald
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ExpressionSyntax

    v12 v13  
    4343 
    4444bracedMonadic := 
    45   ( "sizeof"  
     45  ( "sizeof" 
    4646  | "typeof"  
    47   | L-gillaumet typename R-gillaumet  
     47  | L-gillaumet typename R-gillaumet // CASTING  
    4848  ); 
    4949 
     
    6464which gives us the ability to specify a subset of monadic, diadic operators (infix notation) and a set of monadic braced expressions (apparently single parameter functions). 
    6565 
     66This would show up the following errors in the syntax and not in the type checking 
     67{{{ 
     68freddy / * burt // ERROR at *, as * is not a monadic infix operator 
     69}}}