Changes between Version 12 and Version 13 of ExpressionSyntax
- Timestamp:
- 2017-09-14 10:22:09 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ExpressionSyntax
v12 v13 43 43 44 44 bracedMonadic := 45 ( "sizeof" 45 ( "sizeof" 46 46 | "typeof" 47 | L-gillaumet typename R-gillaumet 47 | L-gillaumet typename R-gillaumet // CASTING 48 48 ); 49 49 … … 64 64 which 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). 65 65 66 This would show up the following errors in the syntax and not in the type checking 67 {{{ 68 freddy / * burt // ERROR at *, as * is not a monadic infix operator 69 }}}