fork download
  1. open System
  2. open Microsoft.FSharp.Collections
  3. let _ =
  4. Array.iter
  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/ZWpfIX/prog.fs(5,16): error FS0039: The value, constructor, namespace or type 'transform' is not defined

/home/ZWpfIX/prog.fs(6,10): error FS0002: This function takes too many arguments, or is used in a context where a function is not expected
stdout
Standard output is empty