No unique range/dimension .. token #5
Labels
No labels
bug
duplicate
enhancement
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
BeRo1985/berotinypascal#5
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Hi BeRo,
I noticed when looking through the code that the range
..symbol used in defining Array dimension doesn't have it's own token, and instead shares theTokColontoken, which means you can compile weird stuff like this:var x: packed array [1:5] of char;instead of
array [1..5], and also you can use the..instead of:for defining types toovar y..char;