Changes between Version 9 and Version 10 of PIL


Ignore:
Timestamp:
10/05/24 10:04:27 (19 months ago)
Author:
siegel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PIL

    v9 v10  
    2828
    2929== Types
    30 - type names look like `int[]`, `int*[](double)`, etc.
    31 - basic types: same as C: `_Bool`, `char`, `short`, `int`, `long`, `long long`, `unsigned`, `float`, `double`, ...
     30- '''type names''' are used for all declarations (no C declarators).  Examples:
     31 * `$int[]`: array of integer
     32 * `$int*`: pointer to integer
     33 * `$int*[]`: array of pointer to integer
     34 * `$int[]*`: pointer to array of integer
     35 * `$int*[]($real)`: function from Real to array of pointer to integer
     36- basic types:
    3237- what are the limits of these types?  to be decided
    3338- `$int`, `$real` (mathematical types)