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