- F# - Namespaces
- F# - Modules
- F# - Events
- F# - Interfaces
- F# - Inheritance
- F# - Operator Overloading
- F# - Structures
- F# - Classes
- F# - Exception Handling
- F# - Pattern Matching
- F# - Enumerations
- F# - Delegates
- F# - Generics
- F# - Basic I/O
- F# - Mutable Dictionary
- F# - Mutable Lists
- F# - Arrays
- F# - Mutable Data
- F# - Discriminated Unions
- F# - Maps
- F# - Sets
- F# - Sequences
- F# - Lists
- F# - Records
- F# - Tuples
- F# - Options
- F# - Strings
- F# - Functions
- F# - Loops
- F# - Decision Making
- F# - Operators
- F# - Variables
- F# - Data Types
- F# - Basic Syntax
- F# - Program Structure
- F# - Environment Setup
- F# - Overview
- F# - Home
F# Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
F# - Environment Setup
The tools required for F# programming are discussed in this chapter.
Integrated Development Environment(IDE) for F#
Microsoft provides Visual Studio 2013 for F# programming.
The free Visual Studio 2013 Community Edition is available from Microsoft’s official website. Visual Studio 2013 Community and above comes with the Visual F# Tools. Installation details available at
.The Visual F# Tools include the command-pne compiler (fsc.exe) and F# Interactive (fsi.exe).Using these tools, you can write all kinds of F# programs from simple command-pne apppcations to more complex apppcations. You can also write F# source code files using a basic text editor, pke Notepad, and compile the code into assembpes using the command-pne compiler.
You can download it from Microsoft Visual Studio. It gets automatically installed in your machine.
Writing F# Programs On Links
Please visit the F# official website for the latest instructions on getting the tools as a Debian package or compipng them directly from the source −
Advertisements