I\'m really new to F#, and I need a bit of help with an F# problem.
I need to implement a cut function that splits a list in half so that the output would be...
check this one out:
let gencut s xs = ([for i in 0 .. s - 1 -> List.nth xs i], [for i in s .. (List.length xs) - 1 -> List.nth xs i])
the you just call
let cut xs = gencut ((List.length xs) / 2) xs
with n durationn only one iteration split in two