Calendar
April 2004 >
SuMoTuWeThFrSa
     1 2 3
4 5 6 7 8 910
11121314151617
18192021222324
252627282930 


Tue, 20 Apr 2004

/python/compose.py

Python Code
#parser py

def f(x):
    return 'f(%s)' % x

def g(x):
    return 'g(%s)' % x

def compose(f1, f2):
    def newf(x):
       return f1(f2(x))
    return lambda x: newf(x) # make return anonymous
[00:00] | [] | # |