Try F# in your browser
Alas for me (in IE8) this isn't working. It doesn't seem to actually "execute".
Does not work very well in Chrome, IE8, or FF. Does not allow pasting. Not really sure what it's good for except to show off an interesting hack, and the hack needs some improvement.
Ever wonder what the 200,000th Fibonacci number is? Last night with a recursive F# function I got it in FSI in just over 6 seconds. It would be cool if you could get this page to work well enough to do that.
http://urpc.dyndns.org/ocamlinterpreter
In german though.
undefined
It didn't like this :( It should list out all files from C:\
All types inferred.let root = "C:\\"; let getdirs dir = try System.IO.Directory.GetDirectories(dir) with | e -> Array.empty let rec list_files dir = seq { yield! System.IO.Directory.GetFiles(dir); for subdir in (getdirs dir) do match subdir with | x when x.StartsWith("C:\\$") -> () | subdir -> yield! list_files subdir } list_files root |> Seq.iter (printfn "%s") printf "done"