예제 #1
0
파일: example.py 프로젝트: whaatt/Mu
def g(function): return mu(function, False, recurseName = 't', paramName = 'a')

#temporary and anonymous functions
#and then some more complicated examples

print(f('return a*3')(4)) #Result: 12
예제 #2
0
파일: example.py 프로젝트: whaatt/Mu
def f(function): return mu(function, True, recurseName = 't', paramName = 'a')
def g(function): return mu(function, False, recurseName = 't', paramName = 'a')