For the following valid Delphi code:
VAR List: TList<Integer>= nil;
you get the error: 'Greater' expected found '>='
The important thing is >= of course.
You don't get the error if you just put a space in between those two symbols:
VAR List: TList<Integer> = nil;