fork download
  1. open System
  2. open Microsoft.FSharp.Collections
  3. let _ =
  4. Array.foreach
  5. (Array.transform ("1 3 2 0".Split [|' '|]) (fun st -> int.Parse st))
  6. (fun n -> Console.WriteLine n);
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/home/UidExk/prog.fs(4,11): error FS0039: The value, constructor, namespace or type 'foreach' is not defined
stdout
Standard output is empty