This code is giving error FS0001: This expression was expected to have type 'string' but here has type ''a * 'b'
open System
open System.Linq
let list1 = [ "one"; "two"; "three" ]
let list2 = [ "one"; "two"; "three" ]
let tablesValidation (l1 : string list) (l2 : string list) =
printfn "%O" l1
printfn "%O" l2
tablesValidation(list1,list2)
Console.ReadKey() |> ignore