From Walloping Crow, 10 Years ago, written in Plain Text.
Embed
  1. parents, babies = (1, 1)
  2. while babies < 100:
  3.     print 'This generation has {0} babies'.format(babies)
  4.     parents, babies = (babies, parents + babies)

Replies to Untitled rss

Title Name Language When
Re: Untitled Botched Camel text 10 Years ago.