Name: Anonymous 2013-07-20 23:10
Look at this goddamn for loop:
Now tell me your language is more readable than that.
class Set
constructor = (elements...) ->
@ary = []
@ary.push e for e in elements when not (e in @ary)Now tell me your language is more readable than that.