Advertisement
Fenrir112

Untitled

Nov 10th, 2013
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     let y1 = [1; 2; 3; 4; 5]
  2.     let y2 = ['a'; 'b'; 'c'; 'd'; 'e']
  3.     let rec Comb = function
  4.         a1::b1 a2::b2-> a1::b1::Comb(b1 b2)
  5.     printfn "%A" (Comb y1 y2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement