Changes between Version 9 and Version 10 of PIL
- Timestamp:
- 10/05/24 10:04:27 (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PIL
v9 v10 28 28 29 29 == 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: 32 37 - what are the limits of these types? to be decided 33 38 - `$int`, `$real` (mathematical types)
