[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: call/cc



Python:
>>> (lambda x,y:x+y)(3,5) # 16 elements
8

I'm amused that Python, with all its noise about the significance of
whitespace, only needs one space for this expression.  

Jeremy