Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
def Counter(): count = 0 def inc(): count++ return count return inc c1 = Counter() c2 = Counter() c1() # 1 c1() # 2 c1() # 3 c2() # 1 c2() # 2 c1() # 4
This paste will be private.
From the Design Piracy series on my blog: