fork download
  1. let uncurry f (x, y) = f x y
  2. let k x y = x
  3. let k' x y = y
  4.  
  5. let fst<'a,'b> = uncurry k
  6. let snd<'a,'b> = uncurry k'
  7.  
Success #stdin #stdout 0.02s 13572KB
stdin
Standard input is empty
stdout
Standard output is empty