All pastes #2019068 Raw Edit

rawr

public python v1 · immutable
#2019068 ·published 2010-12-14 03:57 UTC
rendered paste body
import timea = 0b = 0c = 0d = 0e = 0def add(x):    if(x < 9):	x = x + 1    elif(x == 9):	x = "a"    elif(x == "a"):	x = "b"    elif(x == "b"):	x = 0    return xwhile(True):    time.sleep(.5)    print a,b,c,d,e    e = add(e)    if(e == 0):        d = add(d)        if(d == 0):	    c = add(c)	    if(c == 0):		b = add(b)		if(b == 0):		    a = add(a)