Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to invoke ionide f# REPL

Tags:

atom-editor

f#

I just installed atom and did "apm install ionide-installer". I already have Visual Studio and f# installed. No problem edit .fsx file, "Syntax highlighting" and "Error highlighting". But how can I invoke f# REPL? Thank you.

like image 341
Michael Avatar asked Oct 25 '15 01:10

Michael


People also ask

How do I run F# code?

To run F# Interactive from the console, run dotnet fsi . You will find dotnet fsi in any . NET SDK. For information about available command-line options, see F# Interactive Options.

What is Microsoft F#?

F# is a universal programming language for writing succinct, robust and performant code. F# allows you to write uncluttered, self-documenting code, where your focus remains on your problem domain, rather than the details of programming.

What is Fsproj file?

F# developer project file created by Visual F#, a component of Microsoft's Visual Studio software development kit; stores project settings in an XML format; contains references to source code files, included libraries, and other program assets. FSPROJ files are used for storing F# projects as they are developed.

How do I install Python extensions in Visual Studio code?

Install Python and the Python extension# For a quick install, use Python from python.org and install the extension from the VS Code Marketplace. Once you have a version of Python installed, activate it using the Python: Select Interpreter command.


1 Answers

With Atom Editor focused hit Ctrl+Shift+P. That opens the Atom command window. Type fsi to show all the FSharp Interactive commands. You should see this:

ATOM FSI commands

like image 104
Kevin Avatar answered Oct 04 '22 15:10

Kevin