>>41
Actually, I was thinking that was some kind of list comprehension until I got to the select.
in_range = [x for x in l if x > 10 and x < 20]
Or, if you prefer, in_range = [x | x <- l, x > 10 && x < 20]
Of course Seshup has to fuck up perfectly sane and natural syntax by making it resemble one of the most hideous languages around. I guess that sort of garbage appeals to them.