[ create a new paste ] login | about

Link: http://codepad.org/wQVwnXzI    [ raw code | output | fork ]

Python, pasted on Mar 18:
1
2
3
4
5
6
7
8
9
10
11
12
def main():
    f1()

def f1():
    print 'f1'
    f2()

def f2():
    print 'f2'

if __name__ == '__main__':
    main()


Output:
1
2
f1
f2


Create a new paste based on this one


Comments: