fork(3) download
  1. let uncurry f (x, y) = f x y
  2. and k x y = x
  3. and k' x y = y
  4. in
  5. let fst = uncurry k
  6. and snd = uncurry k'
  7. in ()
Success #stdin #stdout 0s 4380KB
stdin
Standard input is empty
stdout
Standard output is empty