RE: AsmL/Python relationship? Anyone using AsmL? What for?

2004-12-15 Thread Doran_Dermot
Hi Claudio, If I recall correctly Guido van Rossum (creator/father of Python) did not mention AsmL as being an influence. Also AsmL appears to be more recent (circa .NET epoch) than Python (circa 1991). Hence, I would suggest that the Foundations of Software Engineering group at Microsoft have

Re: AsmL/Python relationship? Anyone using AsmL? What for?

2004-12-15 Thread Michel Claveau - abstraction méta-galactique non triviale en fuite perpétuelle.
Hi ! There are many ideas with same type than Python. Indentation, set, sequences (list), parallel (zip), sequential (iter), map (dictionnary), I had see : Set comprehension :A = {1..20} C = {i | i in A where 2 * i in A} Map comprehension (god) etc. etc.