On my computer I simply get:
%%% (311) -> x:=[i fo83r i in 0..17]
>> System error:
invalid number of arguments: 2
Given that there is a "fo83r" instead of "for", I would even expect an
error.
Otherwise:
(1) -> x:=[i for i in 0..17]
(1) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17]
Type: List(NonNegativeInteger)
Ralf