Hi there,
There seems to be a limitation in RapydScript list comprehensions, as witnessed by the following error.
>>> [i*j for i in range(2) for j in range(3)]
1:23: Unexpected token keyword «for», expected keyword «if»
I expected the list [0, 0, 0, 0, 1, 2].