Is there an easy way to embed F# interactive (fsi.exe
) terminal into an application? More generally, is the code for fsi.exe
available to make tweaks to, etc?
Asked
Active
Viewed 1,431 times
7

Mark Pattison
- 2,964
- 1
- 22
- 42

Tristan
- 6,776
- 5
- 40
- 63
1 Answers
4
The code for fsi.exe ships along with the CTP (check the license, but eventually I think we eventually want to make it MS-PL, if it is not already).
There is not a particularly easy way to embed it.

Brian
- 117,631
- 17
- 236
- 300
-
6As a reference, the Visual Studio F# Interactive window simply spawns an FSI.exe process and redirects STDIO/STDOUT. – Chris Smith Oct 14 '09 at 02:19
-
1It's a shame. I really want to be able to share data like you can with the DLR. – Rick Minerich May 26 '11 at 03:36