Issue
I'm on linux and I'd like to use an interactive command line repl for F#.
For example, like the node repl.
What options are there?
Solution
TheQuickBrownFox has a good suggestion, but sometimes I find it's easier to type a quick bit of test code into an actual REPL rather than editing an .fsx file in VS Code. The F# REPL is available with the fsharpi
command. It's part of the fsharp
package (at least on Debian-based systems) so you should already have it installed.
Answered By - rmunn