open System let f (x:'a seq) : string = String.Join (" ", x) printfn "%A" (f [3; 4; 8])
Standard input is empty
/home/o1a5Ez/prog.fs(2,47): error FS0001: This expression was expected to have type
string []
but here has type
seq<'a>
Standard output is empty