Quiche
Real men do eat quiche. Poser macho fools who are insecure in their masculinity cling to the act of not eating quiche to attempt to maintain the tatters of their self-image.
By logging in to LiveJournal using a third-party service you accept LiveJournal's User agreement
>>> def fib(): ... this = 0 ... next = 1 ... while True: ... yield next ... next += this ... this = next - this ... >>> x = fib() >>> x.next() 1 >>> x.next() 1 >>> x.next() 2 >>> x.next() 3 >>> x.next() 5 >>> x.next() 8 >>> x.next() 13 >>> x.next() 21 ( Collapse )