Question: Write an F# function pair (xs, ys) that pairs the elements in two lists into a new list: > pair ['a':'b' c' [1;2;3];: val it:(char

Write an F# function pair (xs, ys) that pairs the elements in two lists into a new list: > pair ['a':'b' c' [1;2;3];: val it:(char * int) list = [(a, 1):(b, 2):(c, 3)]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
