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