Tagged Questions
The fsi tag has no wiki summary.
2
votes
5answers
171 views
Is fsi.exe an interpreter?
I've read that fsi.exe (F# Interactive) is not a true "interpreter" in the strict sense because it compiles F# code on the fly and displays its output.
I am under the impression that the word ...
2
votes
2answers
115 views
F# unbox<int> returns obj
Perhaps a silly question, but why does the return value from unbox appear (in my F# Interactive session) to be typed as obj instead of the concrete type int? As far as I can understand (trying to ...
2
votes
1answer
107 views
F# interactive session persistance and other such user questions
Is there any way of persisting my F# session or serializing it into a file? i.e. so I can hand it to a friend and say "run this" and they will be at the same place I was? I know forth had this ability ...
1
vote
1answer
113 views
Upload image with PHP curl with parameters gives '415'
This is the description of what I need to do (I know it's vague, but it's all I got):
Images can be uploaded by sending an HTTP PUT request to the image URI. The body of the request should contain ...
1
vote
0answers
137 views
F# interactive - “reset session” hotkey
I have assigned a new Global hotkey to
VS 2010/Options/Environment/Keyboard/OtherContextMenus.FSIConsoleContext.ResetSession
But it seems to work only in the FSI window. How can I make the ...
0
votes
1answer
98 views
FSharp interactive on CentOS 6.2 with Mono 2.10.2 won't run as non-root
Hopefully this has not been asked/answered before, but I haven't found anything that fits my issue.
I installed mono on CentOS 6.2 as described here using an rpm and then downloaded FSharp-2.0.0.0. ...
0
votes
3answers
64 views
Printfn value is not a function and cannot be applied in F#'s interactive window
This is probably something simple, but I have a .fs file with a simple sample function.
let printHello = printfn "%A" "Hello"
I have set the search path to the .fs file using
>#I ...
0
votes
1answer
173 views
Huge performance difference running f# same code on fsi 4.0.30319.1 and 2.0.0.0
I am running the same F# code with the two versions of fsi.exe which I can find under my FSharp-2.0.0.0 install:
C:\Program Files\FSharp-2.0.0.0\bin\fsi.exe - Microsoft (R) F# 2.0 Interactive build ...
0
votes
4answers
127 views
Does FSI deal well with multi module F# projects?
Does FSI deal well with multi module/file F# projects?
Consider the following project:
module.fs:
module Xyz
let add x y = x + y
Program.fs:
module Program
open Xyz
let result = add 1 2
...
0
votes
0answers
60 views
list all bindings (like a locals window) in FSI [closed]
Possible Duplicate:
f# interactive - how to see all the variables defined in current session
Is there a way to get an overview of all the things I've declared (bound) so far in an FSI ...
0
votes
1answer
186 views
FSI WPF Event Loop
Is the WPF event loop in this answer still a good one for FSI (besides rethrow which is now reraise)? The answer is from 2008 and I'm not sure if there are any "better" implementations around. If not ...
0
votes
1answer
169 views
Help embedding FSI
Starting here - Embedding F# interactive - I've been trying to embed FSI in my application.
However, I'm getting weird stuff back from StandardOutput.
for example, in standard FSI, if I send this:
...