fork(3) download
  1. f = lambda a,b: "f(%s,%s)" % (a,b)
  2. print reduce(f, "abcd")
Success #stdin #stdout 0.02s 6372KB
stdin
Standard input is empty
stdout
f(f(f(a,b),c),d)